[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Inline / debug-invoke.ll
bloba1c27b00ea59cf8d5dca26ef6f6f20a2d4fa0ee4
1 ; RUN: opt < %s -always-inline -S | FileCheck %s
3 ; Test that the debug location is preserved when rewriting an inlined call as an invoke
5 ; CHECK: invoke void @test()
6 ; CHECK-NEXT: to label {{.*}} unwind label {{.*}}, !dbg [[INL_LOC:!.*]]
7 ; CHECK: [[SP:.*]] = distinct !DISubprogram(
8 ; CHECK: [[INL_LOC]] = !DILocation(line: 1, scope: [[SP]], inlinedAt: [[INL_AT:.*]])
9 ; CHECK: [[INL_AT]] = distinct !DILocation(line: 2, scope: [[SP]])
11 declare void @test()
12 declare i32 @__gxx_personality_v0(...)
14 attributes #0 = { alwaysinline }
15 define void @inl() #0 {
16   call void @test(), !dbg !3
17   ret void
20 define void @caller() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
21   invoke void @inl()
22     to label %cont unwind label %lpad, !dbg !4
24 cont:
25   ret void
27 lpad:
28   landingpad { i8*, i32 }
29     cleanup
30   ret void
33 !llvm.module.flags = !{!1}
34 !llvm.dbg.cu = !{!5}
36 !1 = !{i32 2, !"Debug Info Version", i32 3}
37 !2 = distinct !DISubprogram(unit: !5)
38 !3 = !DILocation(line: 1, scope: !2)
39 !4 = !DILocation(line: 2, scope: !2)
40 !5 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang",
41                              file: !6,
42                              isOptimized: true, flags: "-O2",
43                              splitDebugFilename: "abc.debug", emissionKind: 2)
44 !6 = !DIFile(filename: "path/davidino", directory: "/path/to/dir")