- Round to zero, and representable values cast directly.
- `NaN` goes to 0
- Values beyond the limits of the type are saturated to the "nearest value"
(essentially rounding to zero, in some sense) in the integral type, so e.g.
`f32::INFINITY` would go to `{u,i}N::MAX.`
35 lines
757 B
Rust
35 lines
757 B
Rust
// This file tests that we don't generate any code for saturation when using the
|
|
// unchecked intrinsics.
|
|
|
|
// compile-flags: -C opt-level=3
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// CHECK-LABEL: @f32_to_u32
|
|
#[no_mangle]
|
|
pub fn f32_to_u32(x: f32) -> u32 {
|
|
// CHECK: fptoui
|
|
// CHECK-NOT: fcmp
|
|
// CHECK-NOT: icmp
|
|
// CHECK-NOT: select
|
|
unsafe { x.to_int_unchecked() }
|
|
}
|
|
|
|
// CHECK-LABEL: @f32_to_i32
|
|
#[no_mangle]
|
|
pub fn f32_to_i32(x: f32) -> i32 {
|
|
// CHECK: fptosi
|
|
// CHECK-NOT: fcmp
|
|
// CHECK-NOT: icmp
|
|
// CHECK-NOT: select
|
|
unsafe { x.to_int_unchecked() }
|
|
}
|
|
|
|
#[no_mangle]
|
|
pub fn f64_to_u16(x: f64) -> u16 {
|
|
// CHECK: fptoui
|
|
// CHECK-NOT: fcmp
|
|
// CHECK-NOT: icmp
|
|
// CHECK-NOT: select
|
|
unsafe { x.to_int_unchecked() }
|
|
}
|