Fix GCC build problem with 288f05f related to SmallVector. (#116958)
[llvm-project.git] / mlir / test / mlir-query / simple-test.mlir
bloba4d006598767b3f38d208eae31293f29b6dc0f4b
1 // RUN: mlir-query %s -c "m isConstantOp()" | FileCheck %s
3 // CHECK: {{.*}}.mlir:5:13: note: "root" binds here
4 func.func @simple1() {
5   %c1_i32 = arith.constant 1 : i32
6   return
9 // CHECK: {{.*}}.mlir:12:11: note: "root" binds here
10 // CHECK: {{.*}}.mlir:13:11: note: "root" binds here
11 func.func @simple2() {
12   %cst1 = arith.constant 1.0 : f32
13   %cst2 = arith.constant 2.0 : f32
14   %add = arith.addf %cst1, %cst2 : f32
15   return