Fix LDRi12 immediate operand, which was changed to be the second operand in $addrmode...
[oota-llvm.git] / test / FrontendC++ / 2010-06-22-BitfieldInit.cpp
1 // RUN: %llvmgxx -g -S %s
2 struct TEST2
3 {
4   int subid:32;
5   int :0;
6 };
7
8 typedef struct _TEST3
9 {
10   TEST2 foo;
11   TEST2 foo2;
12 } TEST3;
13
14 TEST3 test =
15   {
16     {0},
17     {0}
18   };
19
20 int main() { return 0; }