blob: 28120f0f2c2870723d873d53163910f5d2951624 [file] [log] [blame]
! Have to enable optimizations, as otherwise builtins won't be expanded.
! { dg-additional-options "-O -fdump-rtl-expand -fno-openacc" }
module openacc_kinds
implicit none
integer, parameter :: acc_device_kind = 4
end module openacc_kinds
module openacc
use openacc_kinds
implicit none
integer (acc_device_kind), parameter :: acc_device_host = 2
interface
function acc_on_device (dev)
use openacc_kinds
logical (4) :: acc_on_device
integer (acc_device_kind), intent (in) :: dev
end function acc_on_device
end interface
end module openacc
logical (4) function f ()
use openacc
implicit none
integer (4), parameter :: dev = 2
f = acc_on_device (dev)
return
end function f
! Without -fopenacc, we're expecting one call.
! { dg-final { scan-rtl-dump-times "\\\(call \[^\\n\]* acc_on_device" 1 "expand" } }