Patch 2/3 of the transition step 1 described in https://discourse.llvm.org/t/rfc-enabling-the-hlfir-lowering-by-default/72778/7. All the modified tests are still here since coverage for the direct lowering to FIR was still needed while it was default. Some already have an HLFIR version, some have not and will need to be ported in step 2 described in the RFC. Note that another 147 lit tests use -emit-fir/-emit-llvm outputs but do not need a flag since the HLFIR/no HLFIR output is the same for what is being tested.
23 lines
869 B
Fortran
23 lines
869 B
Fortran
! RUN: bbc --emit-fir -hlfir=false %s -o - | FileCheck %s
|
|
|
|
! Test generation of dense attributed global array. Also, make sure there are
|
|
! no dead ssa assignments.
|
|
module mm
|
|
integer, parameter :: qq(3) = [(i,i=51,53)]
|
|
end
|
|
subroutine ss
|
|
use mm
|
|
n = qq(3)
|
|
end
|
|
!CHECK-NOT: %{{.*}} = fir.undefined !fir.array<3xi32>
|
|
!CHECK-NOT: %{{.*}} = arith.constant %{{.*}} : index
|
|
!CHECK-NOT: %{{.*}} = arith.constant %{{.*}} : i32
|
|
!CHECK-NOT: %{{.*}} = fir.insert_value %{{.*}}, %{{.*}}, [%{{.*}} : index] : (!fir.array<3xi32>, i32) -> !fir.array<3xi32>
|
|
!CHECK: fir.global @_QMmmECqq(dense<[51, 52, 53]> : tensor<3xi32>) constant : !fir.array<3xi32>
|
|
!CHECK: func @_QPss() {
|
|
!CHECK: %[[a0:.*]] = fir.alloca i32 {bindc_name = "n", uniq_name = "_QFssEn"}
|
|
!CHECK: %[[c0:.*]] = arith.constant 53 : i32
|
|
!CHECK: fir.store %[[c0]] to %[[a0]] : !fir.ref<i32>
|
|
!CHECK: return
|
|
!CHECK: }
|