2024-02-05 10:15:47 -06:00
|
|
|
//@ compile-flags: -Zmir-opt-level=0 -C no-prepopulate-passes -Copt-level=0
|
|
|
|
// make sure that branching on a constant does not emit a conditional
|
|
|
|
// branch or a switch
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
// CHECK-LABEL: @if_bool
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn if_bool() {
|
2024-08-24 20:03:38 -05:00
|
|
|
// CHECK-NOT: br i1
|
|
|
|
// CHECK-NOT: switch
|
2024-05-28 23:11:20 -05:00
|
|
|
_ = if true { 0 } else { 1 };
|
2024-02-05 10:15:47 -06:00
|
|
|
|
2024-05-28 23:11:20 -05:00
|
|
|
_ = if false { 0 } else { 1 };
|
2024-02-05 10:15:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @if_constant_int_eq
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn if_constant_int_eq() {
|
2024-08-24 20:03:38 -05:00
|
|
|
// CHECK-NOT: br i1
|
|
|
|
// CHECK-NOT: switch
|
2024-02-05 10:15:47 -06:00
|
|
|
let val = 0;
|
2024-05-28 23:11:20 -05:00
|
|
|
_ = if val == 0 { 0 } else { 1 };
|
2024-02-05 10:15:47 -06:00
|
|
|
|
|
|
|
// CHECK: br label %{{.+}}
|
2024-05-28 23:11:20 -05:00
|
|
|
_ = if val == 1 { 0 } else { 1 };
|
2024-02-05 10:15:47 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @if_constant_match
|
|
|
|
#[no_mangle]
|
|
|
|
pub fn if_constant_match() {
|
2024-08-24 20:03:38 -05:00
|
|
|
// CHECK-NOT: br i1
|
|
|
|
// CHECK-NOT: switch
|
2024-02-05 10:15:47 -06:00
|
|
|
_ = match 1 {
|
|
|
|
1 => 2,
|
|
|
|
2 => 3,
|
2024-05-28 23:11:20 -05:00
|
|
|
_ => 4,
|
2024-02-05 10:15:47 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
_ = match 1 {
|
|
|
|
2 => 3,
|
2024-05-28 23:11:20 -05:00
|
|
|
_ => 4,
|
2024-02-05 10:15:47 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
_ = match -1 {
|
|
|
|
-1 => 1,
|
|
|
|
_ => 0,
|
|
|
|
}
|
|
|
|
}
|