rust/compiler/rustc_codegen_cranelift/example/mod_bench.rs

37 lines
685 B
Rust
Raw Normal View History

#![feature(start, core_intrinsics, lang_items)]
2018-11-05 18:42:43 +01:00
#![no_std]
#[cfg_attr(unix, link(name = "c"))]
#[cfg_attr(target_env = "msvc", link(name = "msvcrt"))]
2018-11-05 18:42:43 +01:00
extern {}
#[panic_handler]
fn panic_handler(_: &core::panic::PanicInfo) -> ! {
core::intrinsics::abort();
2018-11-05 18:42:43 +01:00
}
#[lang="eh_personality"]
fn eh_personality(){}
// Required for rustc_codegen_llvm
#[no_mangle]
unsafe extern "C" fn _Unwind_Resume() {
core::intrinsics::unreachable();
}
#[start]
fn main(_argc: isize, _argv: *const *const u8) -> isize {
2020-09-18 14:45:52 +02:00
for i in 2..10_000_000 {
2018-11-05 18:42:43 +01:00
black_box((i + 1) % i);
}
0
}
#[inline(never)]
fn black_box(i: u32) {
if i != 1 {
core::intrinsics::abort();
2018-11-05 18:42:43 +01:00
}
}