mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
312 B
Rust
18 lines
312 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, {{.+}} @__rustc_debug_gdb_scripts_section__
|
|
|
|
#[start]
|
|
fn start(_: isize, _: *const *const u8) -> isize {
|
|
return 0;
|
|
}
|