granite-rust/tests/codegen/intrinsics/cold_path.rs
2024-11-17 21:49:10 +01:00

13 lines
231 B
Rust

//@ compile-flags: -O
#![crate_type = "lib"]
#![feature(core_intrinsics)]
use std::intrinsics::cold_path;
#[no_mangle]
pub fn test_cold_path(x: bool) {
cold_path();
}
// CHECK-LABEL: @test_cold_path(
// CHECK-NOT: cold_path