mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
295 B
Rust
18 lines
295 B
Rust
// compile-flags: -O
|
|
|
|
#![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
|
|
}
|
|
}
|