Revert "[llvm-exegesis] Fix preservation of RDI in subprocess mode (#72458)"
[llvm-project.git] / mlir / test / mlir-reduce / dce-test.mlir
blob57b5fd9c2ea738f7e359852f2137fb2d9fb15c31
1 // UNSUPPORTED: system-windows
2 // RUN: mlir-reduce %s -opt-reduction-pass='opt-pass=symbol-dce test=%S/failure-test.sh' | FileCheck %s
3 // This input should be reduced by the pass pipeline so that only
4 // the @simple1 function remains as the other functions should be
5 // removed by the dead code elimination pass.
7 // CHECK-NOT: func private @dead_private_function
8 func.func private @dead_private_function()
10 // CHECK-NOT: func nested @dead_nested_function
11 func.func nested @dead_nested_function()
13 // CHECK-LABEL: func @simple1(%arg0: i1, %arg1: memref<2xf32>, %arg2: memref<2xf32>) {
14 func.func @simple1(%arg0: i1, %arg1: memref<2xf32>, %arg2: memref<2xf32>) {
15   "test.op_crash" () : () -> ()
16   return