summaryrefslogtreecommitdiff
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.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Sema/align-x86.c b/test/Sema/align-x86.c
index 61bd1d33c9d6e..c6cd7543c21d4 100644
--- a/test/Sema/align-x86.c
+++ b/test/Sema/align-x86.c
@@ -9,6 +9,10 @@ long long g2;
short chk1[__alignof__(g2) == 8 ? 1 : -1];
short chk2[__alignof__(long long) == 8 ? 1 : -1];
+unsigned long long g5;
+short chk1[__alignof__(g5) == 8 ? 1 : -1];
+short chk2[__alignof__(unsigned long long) == 8 ? 1 : -1];
+
_Complex double g3;
short chk1[__alignof__(g3) == 8 ? 1 : -1];
short chk2[__alignof__(_Complex double) == 8 ? 1 : -1];