Fix GCC build problem with 288f05f related to SmallVector. (#116958)
[llvm-project.git] / mlir / test / IR / test-manual-cpp-fold.mlir
blob7364b7ccb57623f29df5f26f0e4bd7015d153c7d
1 // RUN: mlir-opt %s -canonicalize -split-input-file | FileCheck %s
3 func.func @test() -> i32 {
4   %c5 = "test.constant"() {value = 5 : i32} : () -> i32
5   %res = "test.manual_cpp_op_with_fold"(%c5) : (i32) -> i32
6   return %res : i32
9 // CHECK-LABEL: func.func @test
10 // CHECK-NEXT: %[[C:.*]] = "test.constant"() <{value = 5 : i32}>
11 // CHECK-NEXT: return %[[C]]