Duncan P. N. Exon Smith | 74195b2 | 2015-01-14 01:20:27 +0000 | [diff] [blame] | 1 | ; RUN: llvm-link %s %S/Inputs/mdlocation.ll -o - -S | FileCheck %s |
| 2 | |
Duncan P. N. Exon Smith | e56023a | 2015-04-29 16:38:44 +0000 | [diff] [blame] | 3 | ; Test that DILocations are remapped properly. |
Duncan P. N. Exon Smith | 74195b2 | 2015-01-14 01:20:27 +0000 | [diff] [blame] | 4 | |
Adrian Prantl | f53db33 | 2016-04-11 23:26:31 +0000 | [diff] [blame] | 5 | define void @foo() !dbg !0 { |
| 6 | ret void, !dbg !3 |
| 7 | } |
Duncan P. N. Exon Smith | 74195b2 | 2015-01-14 01:20:27 +0000 | [diff] [blame] | 8 | |
Adrian Prantl | 4eeaa0d | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 9 | ; CHECK: !named = !{!0, !7, !8, !9, !10, !11, !15, !16, !17, !18} |
Adrian Prantl | f53db33 | 2016-04-11 23:26:31 +0000 | [diff] [blame] | 10 | !named = !{!1, !2, !3, !4, !5} |
| 11 | |
| 12 | ; CHECK: !0 = !DILocation(line: 3, column: 7, scope: !1) |
| 13 | ; CHECK: !3 = distinct !DISubprogram( |
Adrian Prantl | 4eeaa0d | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 14 | ; CHECK: !7 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !0) |
| 15 | ; CHECK: !8 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !7) |
| 16 | ; CHECK: !9 = distinct !DILocation(line: 3, column: 7, scope: !1) |
| 17 | ; CHECK: !10 = distinct !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !9) |
| 18 | ; CHECK: !11 = !DILocation(line: 3, column: 7, scope: !12) |
| 19 | ; CHECK: !13 = distinct !DISubprogram( |
| 20 | ; CHECK: !15 = !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !11) |
| 21 | ; CHECK: !16 = !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !15) |
| 22 | ; CHECK: !17 = distinct !DILocation(line: 3, column: 7, scope: !12) |
| 23 | ; CHECK: !18 = distinct !DILocation(line: 3, column: 7, scope: !12, inlinedAt: !17) |
| 24 | !0 = distinct !DISubprogram(file: !7, scope: !7, line: 1, name: "foo", type: !9, unit: !6) |
Adrian Prantl | f53db33 | 2016-04-11 23:26:31 +0000 | [diff] [blame] | 25 | !1 = !DILocation(line: 3, column: 7, scope: !10) |
| 26 | !2 = !DILocation(line: 3, column: 7, scope: !10, inlinedAt: !1) |
| 27 | !3 = !DILocation(line: 3, column: 7, scope: !10, inlinedAt: !2) |
Duncan P. N. Exon Smith | 68ee48f | 2015-01-14 01:29:32 +0000 | [diff] [blame] | 28 | ; Test distinct nodes. |
Adrian Prantl | f53db33 | 2016-04-11 23:26:31 +0000 | [diff] [blame] | 29 | !4 = distinct !DILocation(line: 3, column: 7, scope: !10) |
| 30 | !5 = distinct !DILocation(line: 3, column: 7, scope: !10, inlinedAt: !4) |
Adrian Prantl | 29b4ba0 | 2016-04-11 20:58:57 +0000 | [diff] [blame] | 31 | |
| 32 | !llvm.dbg.cu = !{!6} |
Adrian Prantl | 4eeaa0d | 2016-04-15 15:57:41 +0000 | [diff] [blame] | 33 | !6 = distinct !DICompileUnit(language: DW_LANG_C89, file: !7) |
Adrian Prantl | 29b4ba0 | 2016-04-11 20:58:57 +0000 | [diff] [blame] | 34 | !7 = !DIFile(filename: "source.c", directory: "/dir") |
Adrian Prantl | f53db33 | 2016-04-11 23:26:31 +0000 | [diff] [blame] | 35 | |
| 36 | !llvm.module.flags = !{!8} |
| 37 | !8 = !{i32 1, !"Debug Info Version", i32 3} |
| 38 | !9 = !DISubroutineType(types: !{}) |
| 39 | !10 = distinct !DILexicalBlock(line: 3, column: 3, file: !7, scope: !0) |