Break circular dependency between FIR dialect and utilities
[llvm-project.git] / flang / test / Fir / annotate-constant.fir
blobdafa3a3ce9293db93a6bbc11ab9f55ab1a9e53c3
1 // RUN: fir-opt -annotate-constant %s | FileCheck %s
3 // CHECK-LABEL: func @annotate_test() -> !fir.ref<!fir.array<?xi32>> {
4 func.func @annotate_test() -> !fir.ref<!fir.array<?xi32>> {
5   %1 = arith.constant 5 : index
6   // CHECK: %[[a:.*]] = fir.alloca !fir.array<?xi32>, %{{.*}} {canonicalize_constant_operands = [5 : index]}
7   %2 = fir.alloca !fir.array<?xi32>, %1
8   return %2 : !fir.ref<!fir.array<?xi32>>