repo.or.cz
/
llvm
/
zpu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed some bugs.
[llvm/zpu.git]
/
test
/
FrontendC++
/
2010-06-22-BitfieldInit.cpp
blob
1cfe1f9f6fd50fd71a3cae10976be338013cb564
1
// RUN: %llvmgxx -g -c %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
; }