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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ 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; 89+ 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] 89+ messages in thread

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-4@http.gcc.gnu.org/bugzilla/>
@ 2014-04-09  5:51 ` elizbathjames at gmail dot com
  0 siblings, 0 replies; 89+ messages in thread
From: elizbathjames at gmail dot com @ 2014-04-09  5:51 UTC (permalink / raw)
  To: gcc-bugs

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

Elizbath Martin <elizbathjames at gmail dot com> changed:

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

--- Comment #87 from Elizbath Martin <elizbathjames at gmail dot com> ---
For the good expansion order make a step by step working Like when go for the
buying of the juicer/blender 
http://zinch.zendesk.com/entries/31114770-Locating-Smoothie-Makers-In-Low-price
customer feedback is the key of the success. So For the right order of the
expansion an expert advice can work better for you.


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (34 preceding siblings ...)
  2009-06-07  9:04 ` schwab at linux-m68k dot org
@ 2010-01-12 16:24 ` schwab at linux-m68k dot org
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at linux-m68k dot org @ 2010-01-12 16:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #86 from schwab at linux-m68k dot org  2010-01-12 16:24 -------
*** Bug 42711 has been marked as a duplicate of this bug. ***


-- 

schwab at linux-m68k dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (33 preceding siblings ...)
  2009-02-09 18:46 ` pinskia at gcc dot gnu dot org
@ 2009-06-07  9:04 ` schwab at linux-m68k dot org
  2010-01-12 16:24 ` schwab at linux-m68k dot org
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at linux-m68k dot org @ 2009-06-07  9:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #85 from schwab at linux-m68k dot org  2009-06-07 09:04 -------
*** Bug 40366 has been marked as a duplicate of this bug. ***


-- 

schwab at linux-m68k dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ashutosh dot sharma dot 0204
                   |                            |at gmail dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (32 preceding siblings ...)
  2008-12-13 18:28 ` schwab at suse dot de
@ 2009-02-09 18:46 ` pinskia at gcc dot gnu dot org
  2009-06-07  9:04 ` schwab at linux-m68k dot org
  2010-01-12 16:24 ` schwab at linux-m68k dot org
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-02-09 18:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #84 from pinskia at gcc dot gnu dot org  2009-02-09 18:45 -------
*** Bug 39143 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (31 preceding siblings ...)
  2008-10-10 16:35 ` paolo dot carlini at oracle dot com
@ 2008-12-13 18:28 ` schwab at suse dot de
  2009-02-09 18:46 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at suse dot de @ 2008-12-13 18:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #83 from schwab at suse dot de  2008-12-13 18:26 -------
*** Bug 38516 has been marked as a duplicate of this bug. ***


-- 

schwab at suse dot de changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (30 preceding siblings ...)
  2007-08-31 16:09 ` pinskia at gcc dot gnu dot org
@ 2008-10-10 16:35 ` paolo dot carlini at oracle dot com
  2008-12-13 18:28 ` schwab at suse dot de
                   ` (3 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: paolo dot carlini at oracle dot com @ 2008-10-10 16:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #82 from paolo dot carlini at oracle dot com  2008-10-10 16:33 -------
*** Bug 37800 has been marked as a duplicate of this bug. ***


-- 

paolo dot carlini at oracle dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |terrix at wp dot pl


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (29 preceding siblings ...)
  2007-08-30 16:11 ` schwab at suse dot de
@ 2007-08-31 16:09 ` pinskia at gcc dot gnu dot org
  2008-10-10 16:35 ` paolo dot carlini at oracle dot com
                   ` (4 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-08-31 16:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #81 from pinskia at gcc dot gnu dot org  2007-08-31 16:09 -------
*** Bug 33270 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tim dot bruylants at vub dot
                   |                            |ac dot be


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (28 preceding siblings ...)
  2007-08-30 12:34 ` rguenth at gcc dot gnu dot org
@ 2007-08-30 16:11 ` schwab at suse dot de
  2007-08-31 16:09 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at suse dot de @ 2007-08-30 16:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #80 from schwab at suse dot de  2007-08-30 16:10 -------
*** Bug 33248 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (27 preceding siblings ...)
  2007-08-10 12:03 ` gjasny at web dot de
@ 2007-08-30 12:34 ` rguenth at gcc dot gnu dot org
  2007-08-30 16:11 ` schwab at suse dot de
                   ` (6 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-08-30 12:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #79 from rguenth at gcc dot gnu dot org  2007-08-30 12:33 -------
*** Bug 33248 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (26 preceding siblings ...)
  2007-06-28 16:55 ` schwab at suse dot de
@ 2007-08-10 12:03 ` gjasny at web dot de
  2007-08-30 12:34 ` rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: gjasny at web dot de @ 2007-08-10 12:03 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #78 from gjasny at web dot de  2007-08-10 12:02 -------
*** Bug 33043 has been marked as a duplicate of this bug. ***


-- 

gjasny at web dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gjasny at web dot de


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (25 preceding siblings ...)
  2007-05-28 22:47 ` pinskia at gcc dot gnu dot org
@ 2007-06-28 16:55 ` schwab at suse dot de
  2007-08-10 12:03 ` gjasny at web dot de
                   ` (8 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at suse dot de @ 2007-06-28 16:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #77 from schwab at suse dot de  2007-06-28 16:54 -------
*** Bug 32536 has been marked as a duplicate of this bug. ***


-- 

schwab at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |astier at lpnp204 dot in2p3
                   |                            |dot fr


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (24 preceding siblings ...)
  2007-05-24 15:23 ` pinskia at gcc dot gnu dot org
@ 2007-05-28 22:47 ` pinskia at gcc dot gnu dot org
  2007-06-28 16:55 ` schwab at suse dot de
                   ` (9 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-28 22:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #76 from pinskia at gcc dot gnu dot org  2007-05-28 22:47 -------
*** Bug 32133 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |j dot witteveen at gmail dot
                   |                            |com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (23 preceding siblings ...)
  2007-03-30 12:04 ` rguenth at gcc dot gnu dot org
@ 2007-05-24 15:23 ` pinskia at gcc dot gnu dot org
  2007-05-28 22:47 ` pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-24 15:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #75 from pinskia at gcc dot gnu dot org  2007-05-24 16:21 -------
*** Bug 32067 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (22 preceding siblings ...)
  2007-02-23 15:36 ` rguenth at gcc dot gnu dot org
@ 2007-03-30 12:04 ` rguenth at gcc dot gnu dot org
  2007-05-24 15:23 ` pinskia at gcc dot gnu dot org
                   ` (11 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-03-30 12:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #74 from rguenth at gcc dot gnu dot org  2007-03-30 13:03 -------
*** Bug 31398 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (21 preceding siblings ...)
  2006-05-17 19:06 ` pinskia at gcc dot gnu dot org
@ 2007-02-23 15:36 ` rguenth at gcc dot gnu dot org
  2007-03-30 12:04 ` rguenth at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-02-23 15:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #73 from rguenth at gcc dot gnu dot org  2007-02-23 15:36 -------
*** Bug 30935 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jrr at concept dot de


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (20 preceding siblings ...)
  2006-04-28  0:01 ` pinskia at gcc dot gnu dot org
@ 2006-05-17 19:06 ` pinskia at gcc dot gnu dot org
  2007-02-23 15:36 ` rguenth at gcc dot gnu dot org
                   ` (13 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-05-17 19:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #72 from pinskia at gcc dot gnu dot org  2006-05-17 19:06 -------
*** Bug 27646 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jesser at pixelworks dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (19 preceding siblings ...)
  2006-04-21  0:40 ` pinskia at gcc dot gnu dot org
@ 2006-04-28  0:01 ` pinskia at gcc dot gnu dot org
  2006-05-17 19:06 ` pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-28  0:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #71 from pinskia at gcc dot gnu dot org  2006-04-28 00:00 -------
*** Bug 27344 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mike dot clarkson at
                   |                            |spacedev dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (18 preceding siblings ...)
  2006-04-14 16:54 ` pinskia at gcc dot gnu dot org
@ 2006-04-21  0:40 ` pinskia at gcc dot gnu dot org
  2006-04-28  0:01 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-21  0:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #70 from pinskia at gcc dot gnu dot org  2006-04-21 00:40 -------
*** Bug 27233 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |raphael dot ribas at gmail
                   |                            |dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (17 preceding siblings ...)
  2006-04-14  2:51 ` pinskia at gcc dot gnu dot org
@ 2006-04-14 16:54 ` pinskia at gcc dot gnu dot org
  2006-04-21  0:40 ` pinskia at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-14 16:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #69 from pinskia at gcc dot gnu dot org  2006-04-14 16:54 -------
*** Bug 27153 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (16 preceding siblings ...)
  2006-04-14  2:32 ` pinskia at gcc dot gnu dot org
@ 2006-04-14  2:51 ` pinskia at gcc dot gnu dot org
  2006-04-14 16:54 ` pinskia at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-14  2:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #68 from pinskia at gcc dot gnu dot org  2006-04-14 02:50 -------
*** Bug 27153 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (15 preceding siblings ...)
  2006-03-29 19:26 ` pinskia at gcc dot gnu dot org
@ 2006-04-14  2:32 ` pinskia at gcc dot gnu dot org
  2006-04-14  2:51 ` pinskia at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-04-14  2:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #67 from pinskia at gcc dot gnu dot org  2006-04-14 02:31 -------
*** Bug 27153 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alexey at cs dot sunysb dot
                   |                            |edu


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (14 preceding siblings ...)
  2006-03-23  6:31 ` pinskia at gcc dot gnu dot org
@ 2006-03-29 19:26 ` pinskia at gcc dot gnu dot org
  2006-04-14  2:32 ` pinskia at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-29 19:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #66 from pinskia at gcc dot gnu dot org  2006-03-29 19:26 -------
*** Bug 26923 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |behloul dot younes at gmail
                   |                            |dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (13 preceding siblings ...)
  2006-03-17 16:59 ` pinskia at gcc dot gnu dot org
@ 2006-03-23  6:31 ` pinskia at gcc dot gnu dot org
  2006-03-29 19:26 ` pinskia at gcc dot gnu dot org
                   ` (20 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-23  6:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #65 from pinskia at gcc dot gnu dot org  2006-03-23 06:30 -------
*** Bug 26820 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ramiller at mines dot edu


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (12 preceding siblings ...)
  2006-03-11 16:50 ` dberlin at gcc dot gnu dot org
@ 2006-03-17 16:59 ` pinskia at gcc dot gnu dot org
  2006-03-23  6:31 ` pinskia at gcc dot gnu dot org
                   ` (21 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-17 16:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #64 from pinskia at gcc dot gnu dot org  2006-03-17 16:59 -------
*** Bug 26730 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (11 preceding siblings ...)
  2006-03-11 16:14 ` pinskia at gcc dot gnu dot org
@ 2006-03-11 16:50 ` dberlin at gcc dot gnu dot org
  2006-03-17 16:59 ` pinskia at gcc dot gnu dot org
                   ` (22 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2006-03-11 16:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #63 from dberlin at gcc dot gnu dot org  2006-03-11 16:49 -------
(In reply to comment #61)
> referring to duplicate 26642: 
> 
> The behavior changed between gcc3 and gcc4 and the comment is "there is no
> reason the result should not change"?

There is simply no guarantee at all that the behavior of this will or won't
change.
It's undefined code.  It could change depending on the phase of the moon.
> 
> Sorry, but I think that's a really bad way to handle things. When a update
> changes behavior, there should be et least an appropriate warning.

Unfortunately, it is impossible to warn for every permuation of undefined code
at compilation time.
However, in general, if you write code whose semantics are undefined, you are
going to get burned.  This is just the way the ball bounces.


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (10 preceding siblings ...)
  2006-03-11 16:10 ` nobs at tigress dot com
@ 2006-03-11 16:14 ` pinskia at gcc dot gnu dot org
  2006-03-11 16:50 ` dberlin at gcc dot gnu dot org
                   ` (23 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-11 16:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #62 from pinskia at gcc dot gnu dot org  2006-03-11 16:14 -------
(In reply to comment #61)
> referring to duplicate 26642: 
> 
> The behavior changed between gcc3 and gcc4 and the comment is "there is no
> reason the result should not change"?

Why this is undefined code :).


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (9 preceding siblings ...)
  2006-03-11 15:10 ` pinskia at gcc dot gnu dot org
@ 2006-03-11 16:10 ` nobs at tigress dot com
  2006-03-11 16:14 ` pinskia at gcc dot gnu dot org
                   ` (24 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: nobs at tigress dot com @ 2006-03-11 16:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #61 from nobs at tigress dot com  2006-03-11 16:10 -------
referring to duplicate 26642: 

The behavior changed between gcc3 and gcc4 and the comment is "there is no
reason the result should not change"?

Sorry, but I think that's a really bad way to handle things. When a update
changes behavior, there should be et least an appropriate warning.

And another comment says "look at the warning you got". If you'd read the
warnings you would have seen it refers to that part of the code that didn't
change its behavior. So a code that only uses the array-version (that behaves
differently) wouldn't get the warning.

I really doubt that there is any good reason that simple variables and array
variables should differ in the order their expressions are solved.

Please, think about it. At least give a warning at the right place!


-- 


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2006-02-22 14:05 ` pinskia at gcc dot gnu dot org
@ 2006-03-11 15:10 ` pinskia at gcc dot gnu dot org
  2006-03-11 16:10 ` nobs at tigress dot com
                   ` (25 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-03-11 15:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #60 from pinskia at gcc dot gnu dot org  2006-03-11 15:09 -------
*** Bug 26642 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nobs at tigress dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2006-02-01 10:35 ` schwab at suse dot de
@ 2006-02-22 14:05 ` pinskia at gcc dot gnu dot org
  2006-03-11 15:10 ` pinskia at gcc dot gnu dot org
                   ` (26 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-22 14:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #59 from pinskia at gcc dot gnu dot org  2006-02-22 14:04 -------
*** Bug 26418 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fuchsia dot groan at virgin
                   |                            |dot net


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2005-12-12 20:24 ` pinskia at gcc dot gnu dot org
@ 2006-02-01 10:35 ` schwab at suse dot de
  2006-02-22 14:05 ` pinskia at gcc dot gnu dot org
                   ` (27 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: schwab at suse dot de @ 2006-02-01 10:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #58 from schwab at suse dot de  2006-02-01 10:34 -------
*** Bug 26060 has been marked as a duplicate of this bug. ***


-- 

schwab at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vitaly at siliconds dot com


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
@ 2005-12-12 20:24 ` pinskia at gcc dot gnu dot org
  2006-02-01 10:35 ` schwab at suse dot de
                   ` (28 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-12-12 20:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #57 from pinskia at gcc dot gnu dot org  2005-12-12 20:23 -------
*** Bug 2673 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mayer at tosca dot localnet


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
@ 2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
  2005-12-12 20:24 ` pinskia at gcc dot gnu dot org
                   ` (29 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #55 from pinskia at gcc dot gnu dot org  2005-11-10 03:49 -------
*** Bug 6765 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jompo at abi dot snv dot
                   |                            |jussieu dot fr


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-11-10  3:48 ` pinskia at gcc dot gnu dot org
@ 2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
                   ` (30 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #56 from pinskia at gcc dot gnu dot org  2005-11-10 03:49 -------
*** Bug 6891 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |av1474 at comtv dot ru


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-11-10  3:19 ` pinskia at gcc dot gnu dot org
@ 2005-11-10  3:48 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
                   ` (31 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #54 from pinskia at gcc dot gnu dot org  2005-11-10 03:48 -------
*** Bug 8175 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pierre dot van dot de dot
                   |                            |laar_at_philips dot com at
                   |                            |gcc dot gnu dot org


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
  2005-11-10  3:17 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:18 ` pinskia at gcc dot gnu dot org
@ 2005-11-10  3:19 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:48 ` pinskia at gcc dot gnu dot org
                   ` (32 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #53 from pinskia at gcc dot gnu dot org  2005-11-10 03:18 -------
*** Bug 5051 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |s9322036 at ncnu dot edu dot
                   |                            |tw


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
  2005-11-10  3:17 ` pinskia at gcc dot gnu dot org
@ 2005-11-10  3:18 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:19 ` pinskia at gcc dot gnu dot org
                   ` (33 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #52 from pinskia at gcc dot gnu dot org  2005-11-10 03:17 -------
*** Bug 762 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug c/11751] wrong evaluation order of an expression
       [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
@ 2005-11-10  3:17 ` pinskia at gcc dot gnu dot org
  2005-11-10  3:18 ` pinskia at gcc dot gnu dot org
                   ` (34 subsequent siblings)
  35 siblings, 0 replies; 89+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-11-10  3:17 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #51 from pinskia at gcc dot gnu dot org  2005-11-10 03:17 -------
*** Bug 1570 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rglan at engr dot sgi dot
                   |                            |com


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


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

end of thread, other threads:[~2014-04-09  5:51 UTC | newest]

Thread overview: 89+ 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
     [not found] <bug-11751-6637@http.gcc.gnu.org/bugzilla/>
2005-11-10  3:17 ` pinskia at gcc dot gnu dot org
2005-11-10  3:18 ` pinskia at gcc dot gnu dot org
2005-11-10  3:19 ` pinskia at gcc dot gnu dot org
2005-11-10  3:48 ` pinskia at gcc dot gnu dot org
2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
2005-11-10  3:49 ` pinskia at gcc dot gnu dot org
2005-12-12 20:24 ` pinskia at gcc dot gnu dot org
2006-02-01 10:35 ` schwab at suse dot de
2006-02-22 14:05 ` pinskia at gcc dot gnu dot org
2006-03-11 15:10 ` pinskia at gcc dot gnu dot org
2006-03-11 16:10 ` nobs at tigress dot com
2006-03-11 16:14 ` pinskia at gcc dot gnu dot org
2006-03-11 16:50 ` dberlin at gcc dot gnu dot org
2006-03-17 16:59 ` pinskia at gcc dot gnu dot org
2006-03-23  6:31 ` pinskia at gcc dot gnu dot org
2006-03-29 19:26 ` pinskia at gcc dot gnu dot org
2006-04-14  2:32 ` pinskia at gcc dot gnu dot org
2006-04-14  2:51 ` pinskia at gcc dot gnu dot org
2006-04-14 16:54 ` pinskia at gcc dot gnu dot org
2006-04-21  0:40 ` pinskia at gcc dot gnu dot org
2006-04-28  0:01 ` pinskia at gcc dot gnu dot org
2006-05-17 19:06 ` pinskia at gcc dot gnu dot org
2007-02-23 15:36 ` rguenth at gcc dot gnu dot org
2007-03-30 12:04 ` rguenth at gcc dot gnu dot org
2007-05-24 15:23 ` pinskia at gcc dot gnu dot org
2007-05-28 22:47 ` pinskia at gcc dot gnu dot org
2007-06-28 16:55 ` schwab at suse dot de
2007-08-10 12:03 ` gjasny at web dot de
2007-08-30 12:34 ` rguenth at gcc dot gnu dot org
2007-08-30 16:11 ` schwab at suse dot de
2007-08-31 16:09 ` pinskia at gcc dot gnu dot org
2008-10-10 16:35 ` paolo dot carlini at oracle dot com
2008-12-13 18:28 ` schwab at suse dot de
2009-02-09 18:46 ` pinskia at gcc dot gnu dot org
2009-06-07  9:04 ` schwab at linux-m68k dot org
2010-01-12 16:24 ` schwab at linux-m68k dot org
     [not found] <bug-11751-4@http.gcc.gnu.org/bugzilla/>
2014-04-09  5:51 ` elizbathjames at gmail dot com

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).