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
[Fortran] OpenACC – permit common blocks in some clauses
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
proc_ptr_8.c
blob
c732ff6667c0f230f8bb602b30801d7ede9ca967
1
/* Used by proc_ptr_8.f90.
2
PR fortran/32580. */
3
4
int
(*
funpointer
)(
int
);
5
6
int
f
(
int
t
)
7
{
8
return
t
*
3
;
9
}
10
11
void
init
()
12
{
13
funpointer
=
f
;
14
}