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
/
funcptr-1.c
blob
79687c9c0052d40068dd8be40fdce2ecfda9bdbc
1
extern
int
(*
gp
)(
const char
*);
2
3
int
4
g
(
const char
*
d
)
5
{
6
printf
(
"g"
);
7
return
0
;
8
}
9
10
f
()
11
{
12
int
errcnt
=
0
;
13
14
if
(
gp
!=
g
)
15
{
16
printf
(
"f"
);
17
errcnt
++;
18
}
19
}