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
PR inline-asm/84742
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
func-ptr-1.c
blob
55f0e10660fcf623e0c8ee76b69cabd658f0ceb5
1
static double
f
(
float
a
);
2
static double
(*
fp
) (
float
a
);
3
4
main
()
5
{
6
fp
=
f
;
7
if
(
fp
((
float
)
1
) !=
1.0
)
8
abort
();
9
exit
(
0
);
10
}
11
12
static double
13
f
(
float
a
)
14
{
15
return
a
;
16
}