"brian m. carlson" <[email protected]> writes:
> I expect that when used on a POSIX system (at least in strict POSIX mode > or when invoked as "c99"), gcc-4.4 neither warns nor generates code > contrary to POSIX with -O2 -Wall. You can add -fno-strict-aliasing which will disable the optimisation and thus prevent the warning. -O2 is documented to include -fstrict-aliasing which is the optimisation that causes the warning. -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

