summaryrefslogtreecommitdiffstats
path: root/test/Sema/128bitint.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/128bitint.c')
-rw-r--r--test/Sema/128bitint.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Sema/128bitint.c b/test/Sema/128bitint.c
new file mode 100644
index 0000000..2a18d90
--- /dev/null
+++ b/test/Sema/128bitint.c
@@ -0,0 +1,6 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+typedef int i128 __attribute__((__mode__(TI)));
+typedef unsigned u128 __attribute__((__mode__(TI)));
+
+int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1];
+int a[(u128)-1 > 1LL ? 1 : -1];
OpenPOWER on IntegriCloud