[clang-tidy][NFC]remove deps of clang in clang tidy test (#116588)
[llvm-project.git] / mlir / test / IR / print-op-custom-or-generic.mlir
bloba82089b36ae9473b8577dda26a14d7ce6facf8f9
1 // # RUN: mlir-opt %s -split-input-file | FileCheck %s
2 // # RUN: mlir-opt %s -mlir-print-op-generic -split-input-file  | FileCheck %s --check-prefix=GENERIC
4 // Check that `printCustomOrGenericOp` and `printGenericOp` print the right
5 // assembly format. For operations without custom format, both should print the
6 // generic format.
8 // CHECK-LABEL: func @op_with_custom_printer
9 // CHECK-GENERIC-LABEL: "func"()
10 func.func @op_with_custom_printer() {
11   %x = test.string_attr_pretty_name
12   // CHECK: %x = test.string_attr_pretty_name
13   // GENERIC: %0 = "test.string_attr_pretty_name"()
14   return
15   // CHECK: return
16   // GENERIC: "func.return"()
19 // -----
21 // CHECK-LABEL: func @op_without_custom_printer
22 // CHECK-GENERIC: "func"()
23 func.func @op_without_custom_printer() {
24   // CHECK: "test.result_type_with_trait"() : () -> !test.test_type_with_trait
25   // GENERIC: "test.result_type_with_trait"() : () -> !test.test_type_with_trait
26   "test.result_type_with_trait"() : () -> !test.test_type_with_trait
27   return