http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45831
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> 2010-09-30 11:56:41 UTC --- And the warnings you mention are of course reasonable, -2147483648 in C/C++ is the integer constant 2147483648 (which doesn't fit into int), which is afterwards negated, you should write -2147483647-1, and you should be using 4294967295U if you want an unsigned int constant.