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
/
20090213_0.c
blob
6387a0e4716dd1732698a1c1b4d5a0cc408d8f03
1
/* { dg-lto-do run } */
2
#include <stdio.h>
3
4
extern
int
foo
(
int
);
5
6
main
()
7
{
8
int
x
=
foo
(
10
);
9
printf
(
"x is %d, foo is at 0x%p
\n
"
,
x
,
foo
);
10
return
0
;
11
}