summaryrefslogtreecommitdiffstats
path: root/test/Sema/align-x86.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Sema/align-x86.c')
-rw-r--r--test/Sema/align-x86.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Sema/align-x86.c b/test/Sema/align-x86.c
new file mode 100644
index 0000000..2bc1cc8
--- /dev/null
+++ b/test/Sema/align-x86.c
@@ -0,0 +1,14 @@
+// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s
+
+// PR3433
+double g1;
+short chk1[__alignof__(g1) == 8 ? 1 : -1];
+short chk2[__alignof__(double) == 8 ? 1 : -1];
+
+long long g2;
+short chk1[__alignof__(g2) == 8 ? 1 : -1];
+short chk2[__alignof__(long long) == 8 ? 1 : -1];
+
+_Complex double g3;
+short chk1[__alignof__(g3) == 8 ? 1 : -1];
+short chk2[__alignof__(_Complex double) == 8 ? 1 : -1];
OpenPOWER on IntegriCloud