summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2008-02-07-bitfield-bug.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/2008-02-07-bitfield-bug.c')
-rw-r--r--test/CodeGen/2008-02-07-bitfield-bug.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CodeGen/2008-02-07-bitfield-bug.c b/test/CodeGen/2008-02-07-bitfield-bug.c
new file mode 100644
index 0000000..dc2ebb7
--- /dev/null
+++ b/test/CodeGen/2008-02-07-bitfield-bug.c
@@ -0,0 +1,11 @@
+// RUN: clang-cc %s -emit-llvm -o %t
+// PR1990
+
+struct test {
+ char a[3];
+ unsigned char b:1;
+};
+
+void f(struct test *t) {
+ t->b = 1;
+}
OpenPOWER on IntegriCloud