mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
36 lines
638 B
Rust
36 lines
638 B
Rust
//@ compile-flags: -O
|
|
#![crate_type = "lib"]
|
|
#![feature(core_intrinsics)]
|
|
|
|
use std::intrinsics::likely;
|
|
|
|
#[inline(never)]
|
|
#[no_mangle]
|
|
pub fn path_a() {
|
|
println!("path a");
|
|
}
|
|
|
|
#[inline(never)]
|
|
#[no_mangle]
|
|
pub fn path_b() {
|
|
println!("path b");
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn test_likely(x: bool) {
|
|
if likely(x) {
|
|
path_a();
|
|
} else {
|
|
path_b();
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @test_likely(
|
|
// CHECK: br i1 %x, label %bb2, label %bb3, !prof ![[NUM:[0-9]+]]
|
|
// CHECK: bb3:
|
|
// CHECK-NOT: cold_path
|
|
// CHECK: path_b
|
|
// CHECK: bb2:
|
|
// CHECK: path_a
|
|
// CHECK: ![[NUM]] = !{!"branch_weights", {{(!"expected", )?}}i32 2000, i32 1}
|