summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/bitfield-init.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/bitfield-init.c')
-rw-r--r--test/CodeGen/bitfield-init.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGen/bitfield-init.c b/test/CodeGen/bitfield-init.c
new file mode 100644
index 0000000..7459614
--- /dev/null
+++ b/test/CodeGen/bitfield-init.c
@@ -0,0 +1,14 @@
+// RUN: clang-cc %s -emit-llvm -o %t
+typedef struct { unsigned int i: 1; } c;
+const c d = { 1 };
+
+// PR2310
+struct Token {
+ unsigned n : 31;
+};
+void sqlite3CodeSubselect(){
+ struct Token one = { 1 };
+}
+
+typedef union T0 { char field0 : 2; } T0;
+T0 T0_values = { 0 };
OpenPOWER on IntegriCloud