repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr58018.c
blob
52c8e83fa0db112d2e53185ace544de6808ca716
1
/* PR tree-optimization/58018 */
2
/* { dg-do compile } */
3
4
int
a
,
b
,
c
,
d
,
e
;
5
6
void
7
bar
(
int
p
)
8
{
9
int
f
=
b
;
10
e
&=
p
<= (
f
^=
0
);
11
}
12
13
void
14
foo
()
15
{
16
for
(;
d
;
d
++)
17
{
18
bar
(
a
&&
c
);
19
bar
(
0
);
20
bar
(
1
);
21
}
22
}