diff options
Diffstat (limited to 'tests/codegen-llvm/intrinsics/cold_path.rs')
| -rw-r--r-- | tests/codegen-llvm/intrinsics/cold_path.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/codegen-llvm/intrinsics/cold_path.rs b/tests/codegen-llvm/intrinsics/cold_path.rs new file mode 100644 index 00000000000..fd75324b671 --- /dev/null +++ b/tests/codegen-llvm/intrinsics/cold_path.rs @@ -0,0 +1,13 @@ +//@ compile-flags: -Copt-level=3 +#![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 |
