public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/11751] New: wrong evaluation of an expression
@ 2003-07-31 17:52 me at elitsa dot net
  2003-07-31 17:55 ` [Bug c/11751] " pinskia at physics dot uc dot edu
                   ` (50 more replies)
  0 siblings, 51 replies; 52+ messages in thread
From: me at elitsa dot net @ 2003-07-31 17:52 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751

           Summary: wrong evaluation of an expression
           Product: gcc
           Version: 3.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: me at elitsa dot net
                CC: gcc-bugs at gcc dot gnu dot org

bellow is simple code that express this bug:

/************
 * File : b.C
 ************/

#include <stdio.h>

int main()
        {
        int a = 1;
        printf(" a = %i \n",(a++)+(++a));               //4

        a = 1;
        printf(" a = %i \n",(a++)+(a++)+(++a));         //4

        return 0;
        }






After compilation in a following way:

c++ -o b b.C

The result was:

 a = 4 
 a = 4


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
@ 2003-07-31 17:55 ` pinskia at physics dot uc dot edu
  2004-08-05 15:01 ` bangerth at dealii dot org
                   ` (49 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-31 17:55 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |INVALID


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-31 17:55 -------
Not a bug in gcc but rather in your code.  Read about sequence points and modifying variables 
between them.


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
  2003-07-31 17:55 ` [Bug c/11751] " pinskia at physics dot uc dot edu
@ 2004-08-05 15:01 ` bangerth at dealii dot org
  2004-08-05 15:01 ` bangerth at dealii dot org
                   ` (48 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-05 15:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-05 15:01 -------
*** Bug 15012 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mdeluigi at student dot ethz
                   |                            |dot ch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (2 preceding siblings ...)
  2004-08-05 15:01 ` bangerth at dealii dot org
@ 2004-08-05 15:01 ` bangerth at dealii dot org
  2004-08-05 15:02 ` bangerth at dealii dot org
                   ` (46 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-05 15:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-05 15:01 -------
*** Bug 13403 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc at lantiainen dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
  2003-07-31 17:55 ` [Bug c/11751] " pinskia at physics dot uc dot edu
  2004-08-05 15:01 ` bangerth at dealii dot org
@ 2004-08-05 15:01 ` bangerth at dealii dot org
  2004-08-05 15:01 ` bangerth at dealii dot org
                   ` (47 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-05 15:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-05 15:01 -------
*** Bug 15103 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |musicman529 at yahoo dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (4 preceding siblings ...)
  2004-08-05 15:02 ` bangerth at dealii dot org
@ 2004-08-05 15:02 ` bangerth at dealii dot org
  2004-08-13 15:39 ` bangerth at dealii dot org
                   ` (44 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-05 15:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-05 15:01 -------
*** Bug 14417 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mcvick_e at iname dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (3 preceding siblings ...)
  2004-08-05 15:01 ` bangerth at dealii dot org
@ 2004-08-05 15:02 ` bangerth at dealii dot org
  2004-08-05 15:02 ` bangerth at dealii dot org
                   ` (45 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-05 15:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-05 15:02 -------
*** Bug 12552 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |devnull at frogshit dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (5 preceding siblings ...)
  2004-08-05 15:02 ` bangerth at dealii dot org
@ 2004-08-13 15:39 ` bangerth at dealii dot org
  2004-08-13 15:40 ` bangerth at dealii dot org
                   ` (43 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 15:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 15:39 -------
*** Bug 11363 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |qyang at media dot lbl dot
                   |                            |gov


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (6 preceding siblings ...)
  2004-08-13 15:39 ` bangerth at dealii dot org
@ 2004-08-13 15:40 ` bangerth at dealii dot org
  2004-08-13 15:46 ` [Bug c/11751] wrong evaluation order " bangerth at dealii dot org
                   ` (42 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 15:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 15:40 -------
*** Bug 17018 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |svetozarmarkov at netscape
                   |                            |dot net


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (7 preceding siblings ...)
  2004-08-13 15:40 ` bangerth at dealii dot org
@ 2004-08-13 15:46 ` bangerth at dealii dot org
  2004-08-13 15:46 ` bangerth at dealii dot org
                   ` (41 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 15:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 15:46 -------
*** Bug 16887 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |krs at home dot se


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (8 preceding siblings ...)
  2004-08-13 15:46 ` [Bug c/11751] wrong evaluation order " bangerth at dealii dot org
@ 2004-08-13 15:46 ` bangerth at dealii dot org
  2004-08-13 16:03 ` bangerth at dealii dot org
                   ` (40 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 15:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 15:45 -------
*** Bug 14951 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zshao at acm dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (9 preceding siblings ...)
  2004-08-13 15:46 ` bangerth at dealii dot org
@ 2004-08-13 16:03 ` bangerth at dealii dot org
  2004-08-13 16:04 ` bangerth at dealii dot org
                   ` (39 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:03 -------
*** Bug 816 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |super dot aorta at ntlworld
                   |                            |dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (12 preceding siblings ...)
  2004-08-13 16:04 ` bangerth at dealii dot org
@ 2004-08-13 16:04 ` bangerth at dealii dot org
  2004-08-13 16:04 ` bangerth at dealii dot org
                   ` (36 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:03 -------
*** Bug 5724 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |raoulgough at dial dot pipex
                   |                            |dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (11 preceding siblings ...)
  2004-08-13 16:04 ` bangerth at dealii dot org
@ 2004-08-13 16:04 ` bangerth at dealii dot org
  2004-08-13 16:04 ` bangerth at dealii dot org
                   ` (37 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:03 -------
*** Bug 4978 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ggs at homer dot att dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (13 preceding siblings ...)
  2004-08-13 16:04 ` bangerth at dealii dot org
@ 2004-08-13 16:04 ` bangerth at dealii dot org
  2004-08-13 16:05 ` bangerth at dealii dot org
                   ` (35 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:04 -------
*** Bug 9693 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lxg8906 at yahoo dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (10 preceding siblings ...)
  2004-08-13 16:03 ` bangerth at dealii dot org
@ 2004-08-13 16:04 ` bangerth at dealii dot org
  2004-08-13 16:04 ` bangerth at dealii dot org
                   ` (38 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:04 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:04 -------
*** Bug 16309 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nakkore at libero dot it


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (14 preceding siblings ...)
  2004-08-13 16:04 ` bangerth at dealii dot org
@ 2004-08-13 16:05 ` bangerth at dealii dot org
  2004-08-13 16:05 ` bangerth at dealii dot org
                   ` (34 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:03 -------
*** Bug 6790 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |horsh at mail dot ru


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (16 preceding siblings ...)
  2004-08-13 16:05 ` bangerth at dealii dot org
@ 2004-08-13 16:05 ` bangerth at dealii dot org
  2004-08-19  8:01 ` reichelt at gcc dot gnu dot org
                   ` (32 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:05 -------
*** Bug 10947 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bmead15 at cox dot net


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (15 preceding siblings ...)
  2004-08-13 16:05 ` bangerth at dealii dot org
@ 2004-08-13 16:05 ` bangerth at dealii dot org
  2004-08-13 16:05 ` bangerth at dealii dot org
                   ` (33 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-13 16:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-13 16:04 -------
*** Bug 7135 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lindahlb at hotmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (17 preceding siblings ...)
  2004-08-13 16:05 ` bangerth at dealii dot org
@ 2004-08-19  8:01 ` reichelt at gcc dot gnu dot org
  2004-08-31 20:46 ` bangerth at dealii dot org
                   ` (31 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-08-19  8:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-08-19 08:01 -------
*** Bug 17095 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |asokumar at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (18 preceding siblings ...)
  2004-08-19  8:01 ` reichelt at gcc dot gnu dot org
@ 2004-08-31 20:46 ` bangerth at dealii dot org
  2004-09-02 12:36 ` schwab at suse dot de
                   ` (30 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-08-31 20:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bangerth at dealii dot org  2004-08-31 20:46 -------
*** Bug 17253 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vanveghel at home dot nl


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (19 preceding siblings ...)
  2004-08-31 20:46 ` bangerth at dealii dot org
@ 2004-09-02 12:36 ` schwab at suse dot de
  2004-09-02 13:01 ` giovannibajo at libero dot it
                   ` (29 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: schwab at suse dot de @ 2004-09-02 12:36 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From schwab at suse dot de  2004-09-02 12:36 -------
*** Bug 17282 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gaurav_har at rediffmail dot
                   |                            |com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (20 preceding siblings ...)
  2004-09-02 12:36 ` schwab at suse dot de
@ 2004-09-02 13:01 ` giovannibajo at libero dot it
  2004-09-03  5:23 ` pinskia at gcc dot gnu dot org
                   ` (28 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: giovannibajo at libero dot it @ 2004-09-02 13:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From giovannibajo at libero dot it  2004-09-02 13:00 -------
Volker recently added a small paragraph about this very common non-bug to our 
non-bug page:

http://gcc.gnu.org/bugs.html#nonbugs_c

You can read here about this bug.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (21 preceding siblings ...)
  2004-09-02 13:01 ` giovannibajo at libero dot it
@ 2004-09-03  5:23 ` pinskia at gcc dot gnu dot org
  2004-09-15 19:51 ` reichelt at gcc dot gnu dot org
                   ` (27 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-09-03  5:23 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-09-03 05:23 -------
*** Bug 17282 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (22 preceding siblings ...)
  2004-09-03  5:23 ` pinskia at gcc dot gnu dot org
@ 2004-09-15 19:51 ` reichelt at gcc dot gnu dot org
  2004-09-23 20:54 ` pinskia at gcc dot gnu dot org
                   ` (26 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2004-09-15 19:51 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-09-15 19:51 -------
*** Bug 17507 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |work at paul dot dubuc dot
                   |                            |org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (23 preceding siblings ...)
  2004-09-15 19:51 ` reichelt at gcc dot gnu dot org
@ 2004-09-23 20:54 ` pinskia at gcc dot gnu dot org
  2004-10-15 15:49 ` bangerth at dealii dot org
                   ` (25 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-09-23 20:54 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-09-23 20:54 -------
*** Bug 17639 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |barnarr at cc dot wwu dot
                   |                            |edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (24 preceding siblings ...)
  2004-09-23 20:54 ` pinskia at gcc dot gnu dot org
@ 2004-10-15 15:49 ` bangerth at dealii dot org
  2005-02-07  6:46 ` pcarlini at suse dot de
                   ` (24 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: bangerth at dealii dot org @ 2004-10-15 15:49 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.0                       |---


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (25 preceding siblings ...)
  2004-10-15 15:49 ` bangerth at dealii dot org
@ 2005-02-07  6:46 ` pcarlini at suse dot de
  2005-02-24  9:25 ` pinskia at gcc dot gnu dot org
                   ` (23 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pcarlini at suse dot de @ 2005-02-07  6:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2005-02-07 00:19 -------
*** Bug 19798 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ceniza666 at yahoo dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (26 preceding siblings ...)
  2005-02-07  6:46 ` pcarlini at suse dot de
@ 2005-02-24  9:25 ` pinskia at gcc dot gnu dot org
  2005-02-24 10:13 ` d_picco at hotmail dot com
                   ` (22 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-24  9:25 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-23 20:26 -------
*** Bug 20181 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |d_picco at hotmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (27 preceding siblings ...)
  2005-02-24  9:25 ` pinskia at gcc dot gnu dot org
@ 2005-02-24 10:13 ` d_picco at hotmail dot com
  2005-02-24 10:21 ` pinskia at gcc dot gnu dot org
                   ` (21 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: d_picco at hotmail dot com @ 2005-02-24 10:13 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From d_picco at hotmail dot com  2005-02-23 20:38 -------
The point I was making with my example is that the native types (int, long,
char, etc...) have different behaviour than a user-defined class with the
operator++.  If it is compiler dependent which way the expression is evaluated,
why not at least make them both agree?  GCC is also the only compiler out of the
5 that I've tested that exhibits this behaviour... all others unify the
behaviour of native and user-defined operator++. 

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (28 preceding siblings ...)
  2005-02-24 10:13 ` d_picco at hotmail dot com
@ 2005-02-24 10:21 ` pinskia at gcc dot gnu dot org
  2005-02-24 10:38 ` d_picco at hotmail dot com
                   ` (20 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-24 10:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-23 20:41 -------
(In reply to comment #28)
The code is undefined, which means we should be able to do system("rm -Rf /");, note we don't.

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (29 preceding siblings ...)
  2005-02-24 10:21 ` pinskia at gcc dot gnu dot org
@ 2005-02-24 10:38 ` d_picco at hotmail dot com
  2005-02-24 10:59 ` pinskia at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: d_picco at hotmail dot com @ 2005-02-24 10:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From d_picco at hotmail dot com  2005-02-23 20:46 -------
Here is a better clarification:

Case 1
======
int a = 0;
int b = a++ + a++;
printf("b = %d\n", b);  // output is 0


Case 2
======
class A
{
  int a_;
public:
  A() : a_(0) {}

  int operator++() { return a_++; }
};

A a;
int b = a++ + a++;
printf("b = %d\n", b);  // output is 1

This is a simple case that shows how the behaviour of the operator++ should be
united.

I'm not sure what you mean by the system(...) call... I understand that the code
is undefined (meaning its up to the compiler vendor to implement as they see
fit).  I think the most fitting way is to have the above two cases unified in
behaviour... isn't one of the reasons that operators were added to C++ was to
allow user-defined types to mimic the functionality and usability of the native
C types?

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (30 preceding siblings ...)
  2005-02-24 10:38 ` d_picco at hotmail dot com
@ 2005-02-24 10:59 ` pinskia at gcc dot gnu dot org
  2005-02-24 13:41 ` d_picco at hotmail dot com
                   ` (18 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-24 10:59 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-23 20:51 -------
(In reply to comment #30)
> I'm not sure what you mean by the system(...) call... I understand that the code
> is undefined (meaning its up to the compiler vendor to implement as they see
> fit).  I think the most fitting way is to have the above two cases unified in
> behaviour... isn't one of the reasons that operators were added to C++ was to
> allow user-defined types to mimic the functionality and usability of the native
> C types?

Undefined means that we can do anything.  Which where the system call comes from.  The point is that 
this undefined, there does not even have be a constancy in the behavior across optimization levels, 
types or anything else.



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (31 preceding siblings ...)
  2005-02-24 10:59 ` pinskia at gcc dot gnu dot org
@ 2005-02-24 13:41 ` d_picco at hotmail dot com
  2005-02-24 14:51 ` schlie at comcast dot net
                   ` (17 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: d_picco at hotmail dot com @ 2005-02-24 13:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From d_picco at hotmail dot com  2005-02-23 23:27 -------
I won't press the issue further because I have other things more pressing ;)

But I think the decision to not change the behaviour here is wrong.  I cannot
create an Integer class that acts as an int due to the operator++.  Just because
it is undefined does not mean that we have to arbitrarily have to choose a
method that adds no value over one that adds good value.  Nearly all other
compiler vendors have adopted this method since it has an element of
common-sense in the face of an undefined process.  I get the feeling that the
only reason it isn't changed is simply because no-one wants to do it.  If there
is another reason, what is it?  

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (32 preceding siblings ...)
  2005-02-24 13:41 ` d_picco at hotmail dot com
@ 2005-02-24 14:51 ` schlie at comcast dot net
  2005-04-20  2:45 ` pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: schlie at comcast dot net @ 2005-02-24 14:51 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From schlie at comcast dot net  2005-02-24 10:34 -------
Although I can confidently say that I've been less than enthusiastic with
some of GCC's standards interpretations; here GCC's results in each of the
examples you cite are within the set of semantically consent values which
should be expected to result from an unspecified evaluation and/or value
assignment order. (Although do agree that GCC has no license to return any
value other than those which would result from these ordering ambiguities).

(Although do believe that GCC should adopt an lr evaluation order; as
expressions which are otherwise ambitious are useless, and those which are
unaffected are insensitive to it; resulting in no harm, only benefit; and with a
little luck may lead to the C/C++ committees coming to their senses in time.)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (33 preceding siblings ...)
  2005-02-24 14:51 ` schlie at comcast dot net
@ 2005-04-20  2:45 ` pinskia at gcc dot gnu dot org
  2005-04-20  2:48 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  2:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:42 -------
*** Bug 3165 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tczarnecki at abc dot com
                   |                            |dot pl


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (34 preceding siblings ...)
  2005-04-20  2:45 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  2:48 ` pinskia at gcc dot gnu dot org
  2005-04-20  2:55 ` pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  2:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:47 -------
*** Bug 1039 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |lid at ecn dot purdue dot
                   |                            |edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (35 preceding siblings ...)
  2005-04-20  2:48 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  2:55 ` pinskia at gcc dot gnu dot org
  2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  2:55 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:55 -------
*** Bug 3324 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arminu at yahoo dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (37 preceding siblings ...)
  2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
  2005-04-20  3:00 ` pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  2:59 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:59 -------
*** Bug 6409 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |suan at cs dot wisc dot edu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (36 preceding siblings ...)
  2005-04-20  2:55 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
  2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  2:59 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:56 -------
*** Bug 5159 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |robc at free dot fr


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (38 preceding siblings ...)
  2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  3:00 ` pinskia at gcc dot gnu dot org
  2005-04-20  3:01 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  3:00 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:57 -------
*** Bug 5494 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |carpman at voidptr dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (39 preceding siblings ...)
  2005-04-20  3:00 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  3:01 ` pinskia at gcc dot gnu dot org
  2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  3:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:58 -------
*** Bug 5516 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |smartmouse714 at yahoo dot
                   |                            |com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (41 preceding siblings ...)
  2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
  2005-04-20  3:06 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  3:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 02:54 -------
*** Bug 2550 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikaldaz at unavarra dot es


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (40 preceding siblings ...)
  2005-04-20  3:01 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
  2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  3:03 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 03:03 -------
*** Bug 9334 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bala at rentec dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (42 preceding siblings ...)
  2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
@ 2005-04-20  3:06 ` pinskia at gcc dot gnu dot org
  2005-04-21  5:06 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-20  3:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-20 03:05 -------
*** Bug 9675 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rjvbertin at hotmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (43 preceding siblings ...)
  2005-04-20  3:06 ` pinskia at gcc dot gnu dot org
@ 2005-04-21  5:06 ` pinskia at gcc dot gnu dot org
  2005-04-27 11:41 ` giovannibajo at libero dot it
                   ` (5 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-21  5:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-21 04:58 -------
*** Bug 6409 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (44 preceding siblings ...)
  2005-04-21  5:06 ` pinskia at gcc dot gnu dot org
@ 2005-04-27 11:41 ` giovannibajo at libero dot it
  2005-05-05 18:12 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: giovannibajo at libero dot it @ 2005-04-27 11:41 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From giovannibajo at libero dot it  2005-04-27 11:40 -------
*** Bug 21246 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jandres at dsic dot upv dot
                   |                            |es


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (45 preceding siblings ...)
  2005-04-27 11:41 ` giovannibajo at libero dot it
@ 2005-05-05 18:12 ` pinskia at gcc dot gnu dot org
  2005-06-30 13:27 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-05 18:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-05 18:12 -------
*** Bug 21404 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |janis at gcc dot gnu dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (46 preceding siblings ...)
  2005-05-05 18:12 ` pinskia at gcc dot gnu dot org
@ 2005-06-30 13:27 ` pinskia at gcc dot gnu dot org
  2005-06-30 13:38 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 13:27 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-30 13:26 -------
*** Bug 22248 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |algorithmus at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (47 preceding siblings ...)
  2005-06-30 13:27 ` pinskia at gcc dot gnu dot org
@ 2005-06-30 13:38 ` pinskia at gcc dot gnu dot org
  2005-07-01 14:29 ` pinskia at gcc dot gnu dot org
  2005-09-22 17:07 ` pinskia at gcc dot gnu dot org
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 13:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-30 13:37 -------
*** Bug 22248 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (48 preceding siblings ...)
  2005-06-30 13:38 ` pinskia at gcc dot gnu dot org
@ 2005-07-01 14:29 ` pinskia at gcc dot gnu dot org
  2005-09-22 17:07 ` pinskia at gcc dot gnu dot org
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-07-01 14:29 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-07-01 14:29 -------
*** Bug 22248 has been marked as a duplicate of this bug. ***

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
  2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
                   ` (49 preceding siblings ...)
  2005-07-01 14:29 ` pinskia at gcc dot gnu dot org
@ 2005-09-22 17:07 ` pinskia at gcc dot gnu dot org
  50 siblings, 0 replies; 52+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-09-22 17:07 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-09-22 17:07 -------
*** Bug 24015 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |buergel at limmat dot ch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11751


^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2005-09-22 17:07 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-31 17:52 [Bug c/11751] New: wrong evaluation of an expression me at elitsa dot net
2003-07-31 17:55 ` [Bug c/11751] " pinskia at physics dot uc dot edu
2004-08-05 15:01 ` bangerth at dealii dot org
2004-08-05 15:01 ` bangerth at dealii dot org
2004-08-05 15:01 ` bangerth at dealii dot org
2004-08-05 15:02 ` bangerth at dealii dot org
2004-08-05 15:02 ` bangerth at dealii dot org
2004-08-13 15:39 ` bangerth at dealii dot org
2004-08-13 15:40 ` bangerth at dealii dot org
2004-08-13 15:46 ` [Bug c/11751] wrong evaluation order " bangerth at dealii dot org
2004-08-13 15:46 ` bangerth at dealii dot org
2004-08-13 16:03 ` bangerth at dealii dot org
2004-08-13 16:04 ` bangerth at dealii dot org
2004-08-13 16:04 ` bangerth at dealii dot org
2004-08-13 16:04 ` bangerth at dealii dot org
2004-08-13 16:04 ` bangerth at dealii dot org
2004-08-13 16:05 ` bangerth at dealii dot org
2004-08-13 16:05 ` bangerth at dealii dot org
2004-08-13 16:05 ` bangerth at dealii dot org
2004-08-19  8:01 ` reichelt at gcc dot gnu dot org
2004-08-31 20:46 ` bangerth at dealii dot org
2004-09-02 12:36 ` schwab at suse dot de
2004-09-02 13:01 ` giovannibajo at libero dot it
2004-09-03  5:23 ` pinskia at gcc dot gnu dot org
2004-09-15 19:51 ` reichelt at gcc dot gnu dot org
2004-09-23 20:54 ` pinskia at gcc dot gnu dot org
2004-10-15 15:49 ` bangerth at dealii dot org
2005-02-07  6:46 ` pcarlini at suse dot de
2005-02-24  9:25 ` pinskia at gcc dot gnu dot org
2005-02-24 10:13 ` d_picco at hotmail dot com
2005-02-24 10:21 ` pinskia at gcc dot gnu dot org
2005-02-24 10:38 ` d_picco at hotmail dot com
2005-02-24 10:59 ` pinskia at gcc dot gnu dot org
2005-02-24 13:41 ` d_picco at hotmail dot com
2005-02-24 14:51 ` schlie at comcast dot net
2005-04-20  2:45 ` pinskia at gcc dot gnu dot org
2005-04-20  2:48 ` pinskia at gcc dot gnu dot org
2005-04-20  2:55 ` pinskia at gcc dot gnu dot org
2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
2005-04-20  2:59 ` pinskia at gcc dot gnu dot org
2005-04-20  3:00 ` pinskia at gcc dot gnu dot org
2005-04-20  3:01 ` pinskia at gcc dot gnu dot org
2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
2005-04-20  3:03 ` pinskia at gcc dot gnu dot org
2005-04-20  3:06 ` pinskia at gcc dot gnu dot org
2005-04-21  5:06 ` pinskia at gcc dot gnu dot org
2005-04-27 11:41 ` giovannibajo at libero dot it
2005-05-05 18:12 ` pinskia at gcc dot gnu dot org
2005-06-30 13:27 ` pinskia at gcc dot gnu dot org
2005-06-30 13:38 ` pinskia at gcc dot gnu dot org
2005-07-01 14:29 ` pinskia at gcc dot gnu dot org
2005-09-22 17:07 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).