mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-05 03:36:21 +00:00

Make sure that compiler and linker don't optimize the section's contents away by adding the global holding the data to "llvm.used". The volatile load in the main shim is retained because "llvm.used", which translates to SHF_GNU_RETAIN on ELF targets, requires a reasonably recent linker; emitting the volatile load ensures compatibility with older linkers, at least when libstd is used. Pretty printers in dylib dependencies are now emitted by the main crate instead of the dylib; apart from matching how rlibs are handled, this approach has the advantage that `omit_gdb_pretty_printer_section` keeps working with dylib dependencies.
40 lines
792 B
Rust
40 lines
792 B
Rust
//
|
|
//@ ignore-windows
|
|
//@ ignore-apple
|
|
//@ ignore-wasm
|
|
//@ ignore-emscripten
|
|
|
|
//@ compile-flags: -g -C no-prepopulate-passes -Cpanic=abort
|
|
|
|
#![feature(lang_items)]
|
|
#![no_std]
|
|
|
|
// CHECK: @llvm.used = {{.+}} @__rustc_debug_gdb_scripts_section
|
|
|
|
#[panic_handler]
|
|
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
|
|
loop {}
|
|
}
|
|
|
|
#[no_mangle]
|
|
extern "C" fn rust_eh_personality() {
|
|
loop {}
|
|
}
|
|
|
|
// Needs rustc to generate `main` as that's where the magic load is inserted.
|
|
// IOW, we cannot write this test with `#![no_main]`.
|
|
// CHECK-LABEL: @main
|
|
// CHECK: load volatile i8, {{.+}} @__rustc_debug_gdb_scripts_section
|
|
|
|
#[lang = "start"]
|
|
fn lang_start<T: 'static>(
|
|
_main: fn() -> T,
|
|
_argc: isize,
|
|
_argv: *const *const u8,
|
|
_sigpipe: u8,
|
|
) -> isize {
|
|
return 0;
|
|
}
|
|
|
|
fn main() {}
|