diff --git a/mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir b/mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir --- a/mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir +++ b/mlir/test/Conversion/TosaToTensor/tosa-to-tensor.mlir @@ -1,6 +1,6 @@ // RUN: mlir-opt --split-input-file --tosa-to-tensor %s -o -| FileCheck %s -// CHECK-LABLE: func @slice +// CHECK-LABEL: @slice func.func @slice(%arg0: tensor<6xf32>) ->() { // CHECK: [[SLICE:%.+]] = tensor.extract_slice %arg0[2] [1] [1] %0 = "tosa.slice"(%arg0) {start = [2], size = [1]} : (tensor<6xf32>) -> (tensor<1xf32>) @@ -9,7 +9,7 @@ // ----- -// CHECK-LABLE: func @slice_dyn +// CHECK-LABEL: @slice_dyn func.func @slice_dyn(%arg0: tensor) -> (tensor) { // CHECK: %[[C0:.+]] = arith.constant 0 : index // CHECK: %[[DIM:.+]] = tensor.dim %arg0, %[[C0]]