mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
180 B
Rust
11 lines
180 B
Rust
//@ compile-flags: -O
|
|
#![crate_type = "lib"]
|
|
|
|
// CHECK-LABEL: @div2
|
|
// CHECK: ashr i32 %a, 1
|
|
// CHECK-NEXT: ret i32
|
|
#[no_mangle]
|
|
pub fn div2(a: i32) -> i32 {
|
|
a.div_euclid(2)
|
|
}
|