This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
system.h: #define INTTYPE_MAXIMUM - Bug
- From: "AlexKlm (sent by Nabble.com)" <lists at nabble dot com>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 23 Dec 2005 07:54:06 -0800 (PST)
- Subject: system.h: #define INTTYPE_MAXIMUM - Bug
- Reply-to: AlexKlm <alexklm at easydevtools dot com>
If you compile by non GCC compiler change:
#define INTTYPE_MAXIMUM(t) ((t) (~ (t) 0 - INTTYPE_MINIMUM (t)))
to:
#define INTTYPE_MAXIMUM(t) ((t) (~ ((t) 0 - INTTYPE_MINIMUM (t))))
gcc-4.1-20051008
--
Sent from the gcc - bugs forum at Nabble.com:
http://www.nabble.com/system.h%3A-define-INTTYPE_MAXIMUM---Bug-t797993.html#a2076765