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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
fnptr-by-value-1_main.c
blob
35c94aaea6897dbe0b60b3ef159ce4e17a1e4f52
1
/* Test passing function pointers. */
2
3
extern
void
fnptr_by_value_1_x
(
void
);
4
extern
void
exit
(
int
);
5
int
fails
;
6
7
int
8
main
()
9
{
10
fnptr_by_value_1_x
();
11
exit
(
0
);
12
}