summaryrefslogtreecommitdiffstats
path: root/clang/test/Preprocessor/stdint.c
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2013-07-01 19:42:40 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2013-07-01 19:42:40 +0000
commitef4129084a6cb66a2ef031ab54a8d5dd30757890 (patch)
tree0830c8eee3875d80f129734d158bd346d0fe6809 /clang/test/Preprocessor/stdint.c
parent25e4a0d41826266b210dd5348052492977a0c587 (diff)
downloadbcm5719-llvm-ef4129084a6cb66a2ef031ab54a8d5dd30757890.tar.gz
bcm5719-llvm-ef4129084a6cb66a2ef031ab54a8d5dd30757890.zip
Fix MSP430 builtin types.
Patch by Job Noorman! llvm-svn: 185362
Diffstat (limited to 'clang/test/Preprocessor/stdint.c')
-rw-r--r--clang/test/Preprocessor/stdint.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/clang/test/Preprocessor/stdint.c b/clang/test/Preprocessor/stdint.c
index c3be05d97cd..cf6f341b357 100644
--- a/clang/test/Preprocessor/stdint.c
+++ b/clang/test/Preprocessor/stdint.c
@@ -239,8 +239,8 @@
// MSP430:typedef int16_t intptr_t;
// MSP430:typedef uint16_t uintptr_t;
//
-// MSP430:typedef long int intmax_t;
-// MSP430:typedef long unsigned int uintmax_t;
+// MSP430:typedef long long int intmax_t;
+// MSP430:typedef long long unsigned int uintmax_t;
//
// MSP430:INT8_MAX_ 127
// MSP430:INT8_MIN_ (-127 -1)
@@ -289,9 +289,9 @@
// MSP430:PTRDIFF_MAX_ 32767
// MSP430:SIZE_MAX_ 65535
//
-// MSP430:INTMAX_MIN_ (-2147483647L -1)
-// MSP430:INTMAX_MAX_ 2147483647L
-// MSP430:UINTMAX_MAX_ 4294967295UL
+// MSP430:INTMAX_MIN_ (-9223372036854775807LL -1)
+// MSP430:INTMAX_MAX_ 9223372036854775807LL
+// MSP430:UINTMAX_MAX_ 18446744073709551615ULL
//
// MSP430:SIG_ATOMIC_MIN_ (-2147483647L -1)
// MSP430:SIG_ATOMIC_MAX_ 2147483647L
OpenPOWER on IntegriCloud