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
/
ipa
/
pr100600.c
blob
8a3d0e16e7e0ee237c489d3d31057cbe67064c03
1
/* PR ipa/100600 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
a
,
b
,
c
;
6
long
d
(
long
x
,
long
e
,
long
f
,
long
g
) {
7
long
h
,
i
;
8
for
(;
h
<
e
;
h
++) {
9
i
=
f
;
10
for
(;
i
<
g
;
i
++)
11
c
=
b
+
a
;
12
}
13
return
h
+
i
;
14
}
15
16
long
j
(
long
x
,
long
e
,
long
y
,
long
g
) {
17
long
h
,
i
;
18
for
(;
h
<
e
;
h
++)
19
for
(;
i
<
g
;
i
++)
20
c
=
b
+
a
;
21
return
h
+
i
;
22
}