[Bug c/20181] Increment/decrement

2005-02-23 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-23 20:26 --- *** This bug has been marked as a duplicate of 11751 *** *** This bug has been marked as a duplicate of 11751 *** -- What|Removed |Added --

[Bug c/20181] Increment/decrement

2005-02-23 Thread d_picco at hotmail dot com
--- Additional Comments From d_picco at hotmail dot com 2005-02-23 20:24 --- (In reply to comment #0) > Consider these situations: > > int a = 0; > int b = a++ + a++; > int c = (a++) + (a++); > int d = a++ + (a++); > int e = (a++) + a++; > > b == c == d == e == 0. I understand based o