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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20050328-1.c
blob
a68574f1fbd3c300e6a51fc0e89c2eb7d733ff27
1
void
fn1
(
void
*);
2
void
fn2
(
void
*);
3
void
foo
(
void
);
4
void
bar
(
void
);
5
6
extern inline
void
*
7
baz
(
void
)
8
{
9
return
0
;
10
}
11
12
void
13
foo
(
void
)
14
{
15
fn1
(
baz
());
16
fn2
(
baz
());
17
}
18
19
void
20
bar
(
void
)
21
{
22
fn1
(
baz
());
23
fn2
(
baz
);
24
}