Revert "[llvm-exegesis] Fix preservation of RDI in subprocess mode (#72458)"
[llvm-project.git] / mlir / test / IR / array-of-attr.mlir
blob1b6fe55205959e2c0f30f9b1061bf350eba639f0
1 // RUN: mlir-opt %s | mlir-opt | FileCheck %s
3 // CHECK: test.array_of_attr_op
4 test.array_of_attr_op
5     // CHECK-SAME: a = [ begin 0 : index end, begin 2 : index end ]
6     a = [begin 0 : index end, begin 2 : index end],
7     // CHECK-SAME: [0, 1, -42, 42]
8     b = [0, 1, -42, 42],
9     // CHECK-SAME: [a, b, b, a]
10     c = [a, b, b, a]
12 // CHECK: test.array_of_attr_op
13 // CHECK-SAME: a = [], b = [], c = []
14 test.array_of_attr_op a = [], b = [], c = []