blob: 103945df8aebfaf1367eadb7125dddc51e0ac17a [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null
Tanya Lattnerd13e0ae2004-11-06 22:29:57 +00002
Chris Lattner627ecea2003-10-17 05:20:51 +00003struct test {
4 bool A : 1;
5 bool B : 1;
6};
7
8void foo(test *T) {
9 T->B = true;
10}
11