aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c')
-rw-r--r--test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c b/test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c
new file mode 100644
index 000000000000..483cb668a28b
--- /dev/null
+++ b/test/CodeGen/2003-08-30-LargeIntegerBitfieldMember.c
@@ -0,0 +1,9 @@
+// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
+
+struct foo {
+ unsigned int I:1;
+ unsigned char J[1][123];
+ unsigned int K:1;
+ };
+
+struct foo F;