blob: a1c27b00ea59cf8d5dca26ef6f6f20a2d4fa0ee4 [file] [log] [blame]
David Blaikie644d2ee2014-06-30 20:30:39 +00001; RUN: opt < %s -always-inline -S | FileCheck %s
2
3; Test that the debug location is preserved when rewriting an inlined call as an invoke
4
5; CHECK: invoke void @test()
6; CHECK-NEXT: to label {{.*}} unwind label {{.*}}, !dbg [[INL_LOC:!.*]]
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00007; CHECK: [[SP:.*]] = distinct !DISubprogram(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00008; CHECK: [[INL_LOC]] = !DILocation(line: 1, scope: [[SP]], inlinedAt: [[INL_AT:.*]])
9; CHECK: [[INL_AT]] = distinct !DILocation(line: 2, scope: [[SP]])
David Blaikie644d2ee2014-06-30 20:30:39 +000010
11declare void @test()
12declare i32 @__gxx_personality_v0(...)
13
14attributes #0 = { alwaysinline }
15define void @inl() #0 {
16 call void @test(), !dbg !3
17 ret void
18}
19
David Majnemer7fddecc2015-06-17 20:52:32 +000020define void @caller() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
David Blaikie644d2ee2014-06-30 20:30:39 +000021 invoke void @inl()
22 to label %cont unwind label %lpad, !dbg !4
23
24cont:
25 ret void
26
27lpad:
David Majnemer7fddecc2015-06-17 20:52:32 +000028 landingpad { i8*, i32 }
David Blaikie644d2ee2014-06-30 20:30:39 +000029 cleanup
30 ret void
31}
32
33!llvm.module.flags = !{!1}
Davide Italianoea040262016-04-05 23:37:08 +000034!llvm.dbg.cu = !{!5}
35
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000036!1 = !{i32 2, !"Debug Info Version", i32 3}
Adrian Prantl75819ae2016-04-15 15:57:41 +000037!2 = distinct !DISubprogram(unit: !5)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000038!3 = !DILocation(line: 1, scope: !2)
39!4 = !DILocation(line: 2, scope: !2)
Davide Italianoea040262016-04-05 23:37:08 +000040!5 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang",
41 file: !6,
42 isOptimized: true, flags: "-O2",
Adrian Prantl75819ae2016-04-15 15:57:41 +000043 splitDebugFilename: "abc.debug", emissionKind: 2)
Davide Italianoea040262016-04-05 23:37:08 +000044!6 = !DIFile(filename: "path/davidino", directory: "/path/to/dir")