Duncan P. N. Exon Smith | 3bfa8d0 | 2015-02-13 01:43:22 +0000 | [diff] [blame] | 1 | ; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s |
| 2 | ; RUN: verify-uselistorder %s |
| 3 | |
| 4 | ; CHECK: !named = !{!0, !1, !2, !3, !4, !4} |
| 5 | !named = !{!0, !1, !2, !3, !4, !5} |
| 6 | |
Duncan P. N. Exon Smith | 99f1269 | 2015-02-20 20:35:17 +0000 | [diff] [blame] | 7 | !0 = distinct !{} |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 8 | !1 = !DIFile(filename: "path/to/file", directory: "/path/to/dir") |
| 9 | !2 = !DICompositeType(tag: DW_TAG_structure_type, name: "Object") |
Duncan P. N. Exon Smith | 3bfa8d0 | 2015-02-13 01:43:22 +0000 | [diff] [blame] | 10 | |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 11 | ; CHECK: !2 = !DICompositeType({{.*}}) |
| 12 | ; CHECK-NEXT: !3 = !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo", getter: "getFoo", attributes: 7, type: !2) |
| 13 | !3 = !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo", |
Duncan P. N. Exon Smith | 3bfa8d0 | 2015-02-13 01:43:22 +0000 | [diff] [blame] | 14 | getter: "getFoo", attributes: 7, type: !2) |
| 15 | |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 16 | ; CHECK-NEXT: !4 = !DIObjCProperty() |
| 17 | !4 = !DIObjCProperty(name: "", file: null, line: 0, setter: "", getter: "", |
Duncan P. N. Exon Smith | 3bfa8d0 | 2015-02-13 01:43:22 +0000 | [diff] [blame] | 18 | attributes: 0, type: null) |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 19 | !5 = !DIObjCProperty() |