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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
PCH
/
cxx_paren_init.h
blob
25cf8da02daf93862ef6534a0cf9fb3a90b2578b
1
struct
S
{
int
i
,
j
; };
2
3
union
U
{
unsigned
:
8
;
int
i
;
char
j
; };
4
5
constexpr
S
foo
(
int
i
,
int
j
) {
return
S
(
i
,
j
); }
6
7
void
bar
(
int
i
,
int
j
) {
int
arr
[
4
](
i
,
j
); }
8
9
constexpr
U
baz
(
int
i
) {
return
U
(
i
); }