-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Add intrinsic checkup on arguments number #28103
Conversation
r? @pnkfelix (rust_highfive has picked a reviewer for you, use r? to override) |
struct f64x2(f64, f64); | ||
|
||
extern "platform-intrinsic" { | ||
fn x86_mm_movemask_pd(x: f64x2, y: f64x2) -> i32; // ok! |
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.
This is still wrong, it should take just one argument.
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.
Oh my bad ! I change it right away !
25c4deb
to
bc024d2
Compare
@bors r+ |
📌 Commit bc024d2 has been approved by |
Fixes #28062