forked from OSchip/llvm-project
43 lines
1.7 KiB
Fortran
43 lines
1.7 KiB
Fortran
! RUN: bbc -emit-fir %S/module_definition.f90
|
|
! RUN: bbc -emit-fir %s -o - | FileCheck %s
|
|
|
|
! Test use of module data not defined in this file.
|
|
! The modules are defined in module_definition.f90
|
|
! The first runs ensures the module file is generated.
|
|
|
|
! CHECK-LABEL: func @_QPm1use()
|
|
real function m1use()
|
|
use m1
|
|
! CHECK-DAG: fir.address_of(@_QMm1Ex) : !fir.ref<f32>
|
|
! CHECK-DAG: fir.address_of(@_QMm1Ey) : !fir.ref<!fir.array<100xi32>>
|
|
m1use = x + y(1)
|
|
end function
|
|
|
|
! TODO: test equivalences once front-end fix in module file is pushed.
|
|
!! CHECK-LABEL func @_QPmodeq1use()
|
|
!real function modEq1use()
|
|
! use modEq1
|
|
! ! CHECK-DAG fir.address_of(@_QMmodeq1Ex1) : !fir.ref<tuple<!fir.array<36xi8>, !fir.array<40xi8>>>
|
|
! ! CHECK-DAG fir.address_of(@_QMmodeq1Ey1) : !fir.ref<tuple<!fir.array<16xi8>, !fir.array<24xi8>>>
|
|
! modEq1use = x2(1) + y1
|
|
!end function
|
|
! CHECK-DAG fir.global @_QMmodeq1Ex1 : tuple<!fir.array<36xi8>, !fir.array<40xi8>>
|
|
! CHECK-DAG fir.global @_QMmodeq1Ey1 : tuple<!fir.array<16xi8>, !fir.array<24xi8>>
|
|
|
|
! CHECK-LABEL: func @_QPmodcommon1use()
|
|
real function modCommon1Use()
|
|
use modCommonInit1
|
|
use modCommonNoInit1
|
|
! CHECK-DAG: fir.address_of(@_QBnamed2) : !fir.ref<!fir.array<4xi8>>
|
|
! CHECK-DAG: fir.address_of(@_QB) : !fir.ref<!fir.array<4xi8>>
|
|
! CHECK-DAG: fir.address_of(@_QBnamed1) : !fir.ref<!fir.array<4xi8>>
|
|
modCommon1Use = x_blank + x_named1 + i_named2
|
|
end function
|
|
|
|
|
|
! CHECK-DAG: fir.global @_QMm1Ex : f32
|
|
! CHECK-DAG: fir.global @_QMm1Ey : !fir.array<100xi32>
|
|
! CHECK-DAG: fir.global common @_QBnamed2(dense<0> : vector<4xi8>) : !fir.array<4xi8>
|
|
! CHECK-DAG: fir.global common @_QB(dense<0> : vector<4xi8>) : !fir.array<4xi8>
|
|
! CHECK-DAG: fir.global common @_QBnamed1(dense<0> : vector<4xi8>) : !fir.array<4xi8>
|