mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:26:06 +00:00

Remove the PRIVATE statement from cudadevice as it hides any interfaces from the used __cuda_device module.
15 lines
484 B
Fortran
15 lines
484 B
Fortran
!===-- module/__cuda_device.f90 --------------------------------------------===!
|
|
!
|
|
! Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
! See https://llvm.org/LICENSE.txt for license information.
|
|
! SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
!
|
|
!===------------------------------------------------------------------------===!
|
|
|
|
! This module contains CUDA Fortran interfaces used in cudadevice.f90.
|
|
|
|
module __cuda_device
|
|
implicit none
|
|
|
|
end module
|