repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2010-06-22-BitfieldInit.cpp
blob
ae02cd9f871ad474fb102aaedb9cce1142d2e899
1
// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o -
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
; }