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
Skip gnat.dg/prot7.adb on hppa.
[official-gcc.git]
/
libgomp
/
testsuite
/
libgomp.oacc-fortran
/
declare-2.f90
blob
de9c52ef0f6486c76b8f97025f327a526962dba8
1
! { dg-do run }
2
3
module
globalvars
4
implicit none
5
integer
a
6
!$acc declare create (a)
7
end module
globalvars
8
9
program
test
10
use
globalvars
11
use
openacc
12
implicit none
13
14
if
(
acc_is_present
(
a
) .
neqv
. .
true
.)
STOP
1
15
16
end program
test