rustc/tests/codegen/intrinsics/cold_path.rs
2025-01-11 15:57:26 +01:00

14 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