At 07:02 PM 3/18/2007, I wrote: >The compilations are being done with -O2, and in addition to the code >reordering, there are symbols which are optimized out, so you can't >examine their values. > >So how do you change -O2 to -O0 or -O1?
I noticed after I wrote this that there is more than one optimization flag in the command line, the order being -O2 and later -O0. So the code is not being optimized after all, since the final flag determines the optimization level.
