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
/
vect
/
pr92324-1.c
blob
e37fa781dd258cf8c1a4f66e657d6a61e21422ac
1
/* { dg-do compile } */
2
3
unsigned
a
,
b
;
4
int
c
,
d
;
5
unsigned
e
(
int
f
) {
6
if
(
a
>
f
)
7
return
a
;
8
return
f
;
9
}
10
void
g
() {
11
for
(;
c
;
c
++)
12
d
=
e
(
d
);
13
b
=
d
;
14
}