blob: 00b09cb9460b18d959bc8aa843c6315511e81256 [file] [log] [blame]
#![feature(asm, core_intrinsics)]
#![crate_type="lib"]
use std::intrinsics;
#[allow(unreachable_code)]
pub fn exit(n: usize) -> i32 {
unsafe {
// Pretend this asm is an exit() syscall.
asm!("" :: "r"(n) :: "volatile");
intrinsics::unreachable()
}
// This return value is just here to generate some extra code for a return
// value, making it easier for the test script to detect whether the
// compiler deleted it.
42
}