brintos

brintos / llvm-project-archived public Read only

0
0
Text · 410 B · dafa3a3 Raw
10 lines · plain
1// RUN: fir-opt -annotate-constant %s | FileCheck %s2 3// CHECK-LABEL: func @annotate_test() -> !fir.ref<!fir.array<?xi32>> {4func.func @annotate_test() -> !fir.ref<!fir.array<?xi32>> {5  %1 = arith.constant 5 : index6  // CHECK: %[[a:.*]] = fir.alloca !fir.array<?xi32>, %{{.*}} {canonicalize_constant_operands = [5 : index]}7  %2 = fir.alloca !fir.array<?xi32>, %18  return %2 : !fir.ref<!fir.array<?xi32>>9}10