Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions flang-rt/lib/runtime/__ppc_intrinsics.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
!===------------------------------------------------------------------------===!

module __ppc_intrinsics
! implicit dependencies, made explicit for CMake
use __fortran_builtins
Comment thread
Meinersbur marked this conversation as resolved.
Outdated
use __ppc_types

private

Expand Down
1 change: 1 addition & 0 deletions flang-rt/lib/runtime/__ppc_types.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
!===------------------------------------------------------------------------===!

module __ppc_types
use __fortran_builtins ! implicit dependency, made explicit for CMake
implicit none

! Set PRIVATE by default to explicitly only export what is meant
Expand Down
4 changes: 4 additions & 0 deletions flang-rt/lib/runtime/mma.f90
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
!===------------------------------------------------------------------------===!

module mma
! implicit dependencies, made explicit for CMake
use __fortran_builtins
use __ppc_types

implicit none
private

Expand Down
Loading