mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
73f40d4293
Fixes #75978. Fixes #99960. Fixes #101048. Fixes #101082. Fixes #101814. Fixes #103132. Fixes #103327.
19 lines
319 B
Rust
19 lines
319 B
Rust
// compile-flags: -O
|
|
// min-llvm-version: 16
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#[no_mangle]
|
|
pub fn test(a: i32, b: i32) -> bool {
|
|
// CHECK-LABEL: @test(
|
|
// CHECK: ret i1 true
|
|
let c1 = (a >= 0) && (a <= 10);
|
|
let c2 = (b >= 0) && (b <= 20);
|
|
|
|
if c1 & c2 {
|
|
a + 100 != b
|
|
} else {
|
|
true
|
|
}
|
|
}
|