This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: Is this a bug?


Or my understand of keyword "volatile" is wrong, following code outputs
compiled by gcc 4.1.1:  x=22 ,y=59
 
main()
{
volatile int  x=20,y=35;
x=y++ + x++;
y= ++y + ++x;
printf("x=%d  y=%d\n" ,x,y);
 
}

thanks
Honggang
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]