rust/src/test/codegen/gdb_debug_script_load.rs
Simon Jakobi 3ea62cb5d1 Remove redundant ignore-tidy-linelength annotations
This is step 2 towards fixing #77548.

In the codegen and codegen-units test suites, the `//` comment markers
were kept in order not to affect any source locations. This is because
these tests cannot be automatically `--bless`ed.
2021-04-03 22:30:20 +02:00

17 lines
387 B
Rust

//
// ignore-windows
// ignore-macos
// ignore-wasm
// ignore-emscripten
// compile-flags: -g -C no-prepopulate-passes
#![feature(start)]
// CHECK-LABEL: @main
// CHECK: load volatile i8, i8* getelementptr inbounds ([[B:\[[0-9]* x i8\]]], [[B]]* @__rustc_debug_gdb_scripts_section__, i32 0, i32 0), align 1
#[start]
fn start(_: isize, _: *const *const u8) -> isize {
return 0;
}