summary refs log tree commit diff
path: root/tests/codegen/intrinsics/cold_path.rs
blob: 24ee84e07bf1dbce0e0be608d58f9be1fa4abdce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ 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