[Bug c++/37503] autoconf detects g++ as having a remainder bug

2008-09-12 Thread nightstrike at gmail dot com
--- Comment #3 from nightstrike at gmail dot com 2008-09-12 20:32 --- Marking as duplicate of 30484. *** This bug has been marked as a duplicate of 30484 *** -- nightstrike at gmail dot com changed: What|Removed |Added

[Bug c++/37503] autoconf detects g++ as having a remainder bug

2008-09-12 Thread nightstrike at gmail dot com
--- Comment #2 from nightstrike at gmail dot com 2008-09-12 20:32 --- Re-opening, valid PR as per 30484. Will close as duplicate. -- nightstrike at gmail dot com changed: What|Removed |Added

[Bug c++/37503] autoconf detects g++ as having a remainder bug

2008-09-12 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2008-09-12 20:17 --- INT_MIN % -1 is undefined as INT_MIN/-1 is undefined. The reason why INT_MIN/-1 is undefined is because - INT_MIN overflows. So this is not a GCC bug but a PPL bug. Report this to them. -- pinskia at gcc dot