From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25998 invoked by alias); 10 Jan 2014 11:35:39 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 25982 invoked by uid 48); 10 Jan 2014 11:35:35 -0000 From: "octo.nebula at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/59755] New: BUG Increment Operator with Accessing Arrays Date: Fri, 10 Jan 2014 11:35:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: 4.8.2 X-Bugzilla-Keywords: X-Bugzilla-Severity: major X-Bugzilla-Who: octo.nebula at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-01/txt/msg01078.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59755 Bug ID: 59755 Summary: BUG Increment Operator with Accessing Arrays Product: gcc Version: 4.8.2 Status: UNCONFIRMED Severity: major Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: octo.nebula at gmail dot com Guys, The increment operator is not working right. The post ++ should increment value of the index after the array expression. But in this case, it acts like the pre ++ version. See code below: #include int main() { int A[2][2] = { { 5, 7}, {9, 10} }; int m = 0, B[] = { 0, 0 }; int C = 0, D = 0; C = A[m][B[m]]; D = A[m][B[m++]]; if (C != D) { fprintf (stderr, "Error: C /= D\n"); return 1; } return 0; } [sunny@localhost trash]$ gcc test.c [sunny@localhost trash]$ ./a.out Error: C /= D [sunny@localhost trash]$ GCC version is 4.8.2