summaryrefslogtreecommitdiffstats
path: root/tests/ui/numbers-arithmetic/issue-105626.rs
blob: 5466f8e18d4728c998404a18d71cbb28e173ae12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// run-pass
// only-x86
// compile-flags: -Ctarget-feature=+sse2

use std::hint::black_box;

fn main() {
    let n: i64 = black_box(0x3fffffdfffffff);
    let r = f32::from_bits(0x5a7fffff);

    assert_ne!((n as f64) as f32, n as f32);

    // FIXME: these assertions fail if only x87 is enabled
    assert_eq!(n as i64 as f32, r);
    assert_eq!(n as u64 as f32, r);
}