You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
646 B
18 lines
646 B
// UNSUPPORTED: system-windows
|
|
// RUN: mlir-reduce %s -test %S/failure-test.sh -pass-test DCE | FileCheck %s
|
|
// This input should be reduced by the pass pipeline so that only
|
|
// the @simple1 function remains as the other functions should be
|
|
// removed by the dead code elimination pass.
|
|
// CHECK-LABEL: func @simple1(%arg0: i1, %arg1: memref<2xf32>, %arg2: memref<2xf32>) {
|
|
|
|
// CHECK-NOT: func @dead_nested_function
|
|
func private @dead_private_function()
|
|
|
|
// CHECK-NOT: func @dead_nested_function
|
|
func nested @dead_nested_function()
|
|
|
|
func @simple1(%arg0: i1, %arg1: memref<2xf32>, %arg2: memref<2xf32>) {
|
|
"test.crashOp" () : () -> ()
|
|
return
|
|
}
|