repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove outermost loop parameter.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
lto
/
materialize-1_1.c
blob
ca080579f067e358b40a09891f0821697f1521a1
1
int
inline_me
(
void
);
2
extern
int
a
;
3
void
abort
(
void
);
4
5
__attribute__
((
noinline
))
6
void
7
clone_me
(
int
c
,
int
d
)
8
{
9
if
(!
c
)
10
{
11
if
(
d
!=
a
)
12
abort
();
13
}
14
}
15
int
16
main
(
void
)
17
{
18
int
i
;
19
for
(
i
=
0
;
i
<
a
;
i
++)
20
inline_me
();
21
return
0
;
22
}