blob: 021f1ca0c3af03cce879d1d45efd6c35c322e60b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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
}
}
|