rust/tests/codegen/debuginfo-constant-locals.rs
Arthur Eubanks 6c348aca4e Adjust dbg.value/dbg.declare checks for LLVM update
https://github.com/llvm/llvm-project/pull/89799 changes llvm.dbg.value/declare intrinsics to be in a different, out-of-instruction-line representation. For example
  call void @llvm.dbg.declare(...)
becomes
  #dbg_declare(...)

Update tests accordingly to work with both the old and new way.
2024-05-06 23:15:48 +00:00

29 lines
722 B
Rust

//@ compile-flags: -g -O
// Check that simple constant values are preserved in debuginfo across both MIR opts and LLVM opts
#![crate_type = "lib"]
#[no_mangle]
pub fn check_it() {
let a = 1;
let b = 42;
foo(a + b);
}
#[inline(never)]
fn foo(x: i32) {
std::process::exit(x);
}
// CHECK-LABEL: @check_it
// CHECK: dbg{{.}}value({{(metadata )?}}i32 1, {{(metadata )?}}![[a_metadata:[0-9]+]], {{(metadata )?}}!DIExpression()
// CHECK: dbg{{.}}value({{(metadata )?}}i32 42, {{(metadata )?}}![[b_metadata:[0-9]+]], {{(metadata )?}}!DIExpression()
// CHECK: ![[a_metadata]] = !DILocalVariable(name: "a"
// CHECK-SAME: line: 9
// CHECK: ![[b_metadata]] = !DILocalVariable(name: "b"
// CHECK-SAME: line: 10