-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
handle NaN in unordered comparisons #627
Conversation
5e01af2
to
61bcada
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks nice!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. Please confirm it also work in the above case.
61bcada
to
3d66b06
Compare
as an additional note, this still fails: #![feature(repr_simd, intrinsics)]
extern "rust-intrinsic" {
fn simd_as<T, U>(x: T) -> U;
}
#[derive(Copy, Clone)]
#[repr(simd)]
struct V<T>([T; 2]);
fn main() {
unsafe {
let f = V::<f32>([f32::MIN, f32::MAX]);
let i: V<i16> = simd_as(f);
assert_eq!(i.0[0], f.0[0] as i16);
assert_eq!(i.0[1], f.0[1] as i16);
}
} The just to be clear: this does not use |
In this case, please remove this test from here. After that, I'll merge. Thanks. |
3d66b06
to
c817210
Compare
Thanks for your contribution! |
fixes #75
fixes #626
The
tests/ui/numbers-arithmetic/saturating-float-casts.rs
test now succeeds.