23 lines · plain
1! RUN: bbc --emit-fir -hlfir=false %s -o - | FileCheck %s2 3! Test generation of dense attributed global array. Also, make sure there are4! no dead ssa assignments.5module mm6 integer, parameter :: qq(3) = [(i,i=51,53)]7end8subroutine ss9 use mm10 n = qq(3)11end12!CHECK-NOT: %{{.*}} = fir.undefined !fir.array<3xi32>13!CHECK-NOT: %{{.*}} = arith.constant %{{.*}} : index14!CHECK-NOT: %{{.*}} = arith.constant %{{.*}} : i3215!CHECK-NOT: %{{.*}} = fir.insert_value %{{.*}}, %{{.*}}, [%{{.*}} : index] : (!fir.array<3xi32>, i32) -> !fir.array<3xi32>16!CHECK: fir.global @_QMmmECqq(dense<[51, 52, 53]> : tensor<3xi32>) constant : !fir.array<3xi32>17!CHECK: func @_QPss() {18!CHECK: %[[a0:.*]] = fir.alloca i32 {bindc_name = "n", uniq_name = "_QFssEn"}19!CHECK: %[[c0:.*]] = arith.constant 53 : i3220!CHECK: fir.store %[[c0]] to %[[a0]] : !fir.ref<i32>21!CHECK: return22!CHECK: }23