repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Really use attribute.
[llvm-complete.git]
/
test
/
CFrontend
/
2003-08-30-AggregateInitializer.c
blob
58c77b6aa04f70def23283ad06aaac4768991ff2
1
// RUN: %llvmgcc -S %s -o /dev/null
2
3
struct
istruct
{
4
unsigned char
C
;
5
};
6
7
struct
foo
{
8
unsigned int
I
:
1
;
9
struct
istruct J
;
10
unsigned char
L
[
1
];
11
unsigned int
K
:
1
;
12
};
13
14
struct
foo F
= {
1
, {
7
}, {
123
} ,
1
};
15
16