diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-07 08:49:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-07 08:49:37 +0000 |
commit | 6726d42059d990f6f3939eeee326bfd0956b089d (patch) | |
tree | 85b8fa4a416258b83897495352ff06ff4d0e2ba5 /clang/lib/Headers/stdint.h | |
parent | 04441a10a5895081366528f19e2484d110c65d62 (diff) | |
download | bcm5719-llvm-6726d42059d990f6f3939eeee326bfd0956b089d.tar.gz bcm5719-llvm-6726d42059d990f6f3939eeee326bfd0956b089d.zip |
remove two eroneous suffixes, these promote to int. Thanks to Neil
for pointing this out.
llvm-svn: 64011
Diffstat (limited to 'clang/lib/Headers/stdint.h')
-rw-r--r-- | clang/lib/Headers/stdint.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Headers/stdint.h b/clang/lib/Headers/stdint.h index 662f3401593..ec8810a840a 100644 --- a/clang/lib/Headers/stdint.h +++ b/clang/lib/Headers/stdint.h @@ -106,7 +106,7 @@ typedef __UINTMAX_TYPE__ uintmax_t; #define INT8_MAX 127 #define INT8_MIN (-128) -#define UINT8_MAX 255U +#define UINT8_MAX 255 #define INT_LEAST8_MIN INT8_MIN #define INT_LEAST8_MAX INT8_MAX #define UINT_LEAST8_MAX UINT8_MAX @@ -116,7 +116,7 @@ typedef __UINTMAX_TYPE__ uintmax_t; #define INT16_MAX 32767 #define INT16_MIN (-32768) -#define UINT16_MAX 65535U +#define UINT16_MAX 65535 #define INT_LEAST16_MIN INT16_MIN #define INT_LEAST16_MAX INT16_MAX #define UINT_LEAST16_MAX UINT16_MAX |