summaryrefslogtreecommitdiffstats
path: root/test/Sema/types.c
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-04-30 02:43:43 +0000
committerChris Lattner <sabre@nondot.org>2009-04-30 02:43:43 +0000
commit2df9ced9fd1e8c7d7b38443db07e0e811de22571 (patch)
treec5cb423c1cc8fe563f15be09e5a3e6612763b643 /test/Sema/types.c
parent5532180ae3fa5b3bfa0b2177f08c94075641e8bb (diff)
initial support for __[u]int128_t, which should be basically
compatible with VC++ and GCC. The codegen/mangling angle hasn't been fully ironed out yet. Note that we accept int128_t even in 32-bit mode, unlike gcc. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70464 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Sema/types.c')
-rw-r--r--test/Sema/types.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Sema/types.c b/test/Sema/types.c
index 40dfd89c4f..d1e9fcc052 100644
--- a/test/Sema/types.c
+++ b/test/Sema/types.c
@@ -8,3 +8,14 @@ typedef int *S[2];
restrict S y; // expected-error {{restrict requires a pointer or reference ('S' (aka 'int *[2]') is invalid)}}
+
+// int128_t is available.
+int a() {
+ __int128_t s;
+ __uint128_t t;
+}
+// but not a keyword
+int b() {
+ int __int128_t;
+ int __uint128_t;
+}