2018-03-24 01:47:22 -05:00
|
|
|
//@ compile-flags: -C no-prepopulate-passes
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
#![feature(core_intrinsics)]
|
|
|
|
|
|
|
|
use std::intrinsics::exact_div;
|
|
|
|
|
|
|
|
// CHECK-LABEL: @exact_sdiv
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn exact_sdiv(x: i32, y: i32) -> i32 {
|
2019-06-04 15:13:41 -05:00
|
|
|
// CHECK: sdiv exact
|
2018-03-24 01:47:22 -05:00
|
|
|
exact_div(x, y)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @exact_udiv
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn exact_udiv(x: u32, y: u32) -> u32 {
|
2019-06-04 15:13:41 -05:00
|
|
|
// CHECK: udiv exact
|
2018-03-24 01:47:22 -05:00
|
|
|
exact_div(x, y)
|
|
|
|
}
|