Add an inlining debuginfo test
This commit is contained in:
parent
7101ce9127
commit
7ae8bc3957
1 changed files with 16 additions and 0 deletions
16
src/test/codegen/inline-debuginfo.rs
Normal file
16
src/test/codegen/inline-debuginfo.rs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
#![crate_type="rlib"]
|
||||||
|
// compile-flags: -Copt-level=3 -g
|
||||||
|
|
||||||
|
#[no_mangle]
|
||||||
|
#[inline(always)]
|
||||||
|
pub extern "C" fn callee(x: u32) -> u32 {
|
||||||
|
x + 4
|
||||||
|
}
|
||||||
|
|
||||||
|
// CHECK-LABEL: caller
|
||||||
|
// CHECK: call void @llvm.dbg.value(metadata i32 %y, metadata !{{.*}}, metadata !DIExpression(DW_OP_constu, 3, DW_OP_minus, DW_OP_stack_value)), !dbg [[A:!.*]]
|
||||||
|
// CHECK: [[A]] = !DILocation(line: {{.*}}, scope: {{.*}}, inlinedAt: {{.*}})
|
||||||
|
#[no_mangle]
|
||||||
|
pub extern "C" fn caller(y: u32) -> u32 {
|
||||||
|
callee(y - 3)
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue