Chris Lattner | b984970 | 2004-11-22 19:11:40 +0000 | [diff] [blame] | 1 | // RUN: %llvmgcc -S %s -o /dev/null |
Tanya Lattner | e9af5d1 | 2004-11-06 22:41:00 +0000 | [diff] [blame] | 2 | |
Reid Spencer | 96e5436 | 2004-12-29 03:17:30 +0000 | [diff] [blame^] | 3 | // XFAIL: * |
4 | |||||
Chris Lattner | df97919 | 2003-08-30 20:57:49 +0000 | [diff] [blame] | 5 | struct istruct { |
6 | unsigned char C; | ||||
7 | }; | ||||
8 | |||||
9 | struct foo { | ||||
10 | unsigned int I:1; | ||||
11 | struct istruct J; | ||||
12 | unsigned char L[1]; | ||||
13 | unsigned int K:1; | ||||
14 | }; | ||||
15 | |||||
16 | struct foo F = { 1, { 7 }, { 123 } , 1 }; | ||||
17 | |||||
18 |