Revert "[llvm-exegesis] Fix preservation of RDI in subprocess mode (#72458)"
[llvm-project.git] / mlir / test / IR / distinct-attr.mlir
blobe0727fec448913c350f1560d80357cabc58b57b4
1 // RUN: mlir-opt %s | FileCheck %s
2 // RUN: mlir-opt -mlir-print-local-scope %s | FileCheck %s --check-prefix=CHECK-GENERIC
4 // CHECK: #[[DISTINCT0:.*]] = distinct[0]<42 : i32>
5 // CHECK: #[[DISTINCT1:.*]] = distinct[1]<array<i32: 10, 42>>
6 // CHECK: #[[DISTINCT2:.*]] = distinct[2]<42 : i32>
8 // CHECK:         distinct.attr = #[[DISTINCT0]]
9 // CHECK-GENERIC: distinct.attr = distinct[0]<42 : i32>
10 "test.op"() {distinct.attr = distinct[0]<42 : i32>} : () -> ()
12 // CHECK:         distinct.attr = #[[DISTINCT1]]
13 // CHECK-GENERIC: distinct.attr = distinct[1]<array<i32: 10, 42>>
14 "test.op"() {distinct.attr = distinct[1]<array<i32: 10, 42>>} : () -> ()
16 // CHECK:         distinct.attr = #[[DISTINCT0]]
17 // CHECK-GENERIC: distinct.attr = distinct[0]<42 : i32>
18 "test.op"() {distinct.attr = distinct[0]<42 : i32>} : () -> ()
20 // CHECK:         distinct.attr = #[[DISTINCT2]]
21 // CHECK-GENERIC: distinct.attr = distinct[2]<42 : i32>
22 "test.op"() {distinct.attr = distinct[42]<42 : i32>} : () -> ()
24 // CHECK: distinct.attr = distinct[3]<>
25 "test.op"() {distinct.attr = distinct[3]<>} : () -> ()
27 // CHECK: distinct.attr = distinct[4]<>
28 "test.op"() {distinct.attr = distinct[4]<unit>} : () -> ()