[flang] Fix crash in HLFIR generation (#118399)
[llvm-project.git] / mlir / test / Transforms / test-pattern-selective-replacement.mlir
blob88da18f6c9e4024ff7679021b63e06691d185fb5
1 // RUN: mlir-opt -allow-unregistered-dialect -split-input-file -test-pattern-selective-replacement -verify-diagnostics %s | FileCheck %s
3 // Test that operations can be selectively replaced.
5 // CHECK-LABEL: @test1
6 // CHECK-SAME: %[[ARG0:.*]]: i32, %[[ARG1:.*]]: i32
7 func.func @test1(%arg0: i32, %arg1 : i32) -> () {
8   // CHECK: arith.addi %[[ARG1]], %[[ARG1]]
9   // CHECK-NEXT: "test.return"(%[[ARG0]]
10   %cast = "test.cast"(%arg0, %arg1) : (i32, i32) -> (i32)
11   %non_terminator = arith.addi %cast, %cast : i32
12   "test.return"(%cast, %non_terminator) : (i32, i32) -> ()
15 // -----