blob: 5ad7e65ce45678a37a4901c6d87b1ae46588c981 [file] [log] [blame]
Duncan P. N. Exon Smith47d829812015-01-14 01:20:27 +00001; RUN: llvm-link %s %S/Inputs/mdlocation.ll -o - -S | FileCheck %s
2
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003; Test that DILocations are remapped properly.
Duncan P. N. Exon Smith47d829812015-01-14 01:20:27 +00004
Adrian Prantlea7eb842016-04-11 23:26:31 +00005define void @foo() !dbg !0 {
6 ret void, !dbg !3
7}
Duncan P. N. Exon Smith47d829812015-01-14 01:20:27 +00008
Adrian Prantlea7eb842016-04-11 23:26:31 +00009; CHECK: !named = !{!0, !6, !7, !8, !9, !10, !13, !14, !15, !16}
10!named = !{!1, !2, !3, !4, !5}
11
12; CHECK: !0 = !DILocation(line: 3, column: 7, scope: !1)
13; CHECK: !3 = distinct !DISubprogram(
14; CHECK: !6 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !0)
15; CHECK: !7 = !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !6)
16; CHECK: !8 = distinct !DILocation(line: 3, column: 7, scope: !1)
17; CHECK: !9 = distinct !DILocation(line: 3, column: 7, scope: !1, inlinedAt: !8)
18; CHECK: !10 = !DILocation(line: 3, column: 7, scope: !11)
19; CHECK: !12 = distinct !DISubprogram(
20; CHECK: !13 = !DILocation(line: 3, column: 7, scope: !11, inlinedAt: !10)
21; CHECK: !14 = !DILocation(line: 3, column: 7, scope: !11, inlinedAt: !13)
22; CHECK: !15 = distinct !DILocation(line: 3, column: 7, scope: !11)
23; CHECK: !16 = distinct !DILocation(line: 3, column: 7, scope: !11, inlinedAt: !15)
24!0 = distinct !DISubprogram(file: !7, scope: !7, line: 1, name: "foo", type: !9)
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 Smitha5a0f572015-01-14 01:29:32 +000028; Test distinct nodes.
Adrian Prantlea7eb842016-04-11 23:26:31 +000029!4 = distinct !DILocation(line: 3, column: 7, scope: !10)
30!5 = distinct !DILocation(line: 3, column: 7, scope: !10, inlinedAt: !4)
Adrian Prantl115edca2016-04-11 20:58:57 +000031
32!llvm.dbg.cu = !{!6}
33!6 = distinct !DICompileUnit(language: DW_LANG_C89, file: !7, subprograms: !{!0})
34!7 = !DIFile(filename: "source.c", directory: "/dir")
Adrian Prantlea7eb842016-04-11 23:26:31 +000035
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)