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
/
pr110766.c
blob
97dcacf1e004d40e1e550c9afc1c778dfe8c7f89
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
,
e
;
4
short
d
,
f
;
5
int
g
(
int
h
) {
return
h
>
a
?
h
:
h
<<
a
; }
6
int
main
() {
7
while
(
e
) {
8
b
=
0
;
9
for
(;
b
<
3
;
b
++)
10
if
(
c
) {
11
e
=
g
(
1
);
12
f
=
e
|
d
;
13
}
14
d
=
0
;
15
}
16
return
0
;
17
}