2022-06-20 23:26:51 +00:00
|
|
|
// Makes sure that `-Z dwarf-version=5` causes `rustc` to emit DWARF version 5.
|
2025-02-24 09:26:54 +00:00
|
|
|
//@ add-core-stubs
|
2022-06-20 23:26:51 +00:00
|
|
|
//@ assembly-output: emit-asm
|
2023-10-07 00:29:42 +00:00
|
|
|
//@ compile-flags: -g --target x86_64-unknown-linux-gnu -Z dwarf-version=5 -Copt-level=0
|
2022-06-20 23:26:51 +00:00
|
|
|
//@ needs-llvm-components: x86
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
#![no_core]
|
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
extern crate minicore;
|
|
|
|
use minicore::*;
|
2022-06-20 23:26:51 +00:00
|
|
|
|
|
|
|
pub fn wibble() {}
|
|
|
|
|
|
|
|
// CHECK: .section .debug_info
|
|
|
|
// CHECK-NOT: .short 2
|
|
|
|
// CHECK-NOT: .short 4
|
|
|
|
// CHECK: .short 5
|
2023-11-27 17:35:27 +00:00
|
|
|
// CHECK: .section .debug_names
|