-
Notifications
You must be signed in to change notification settings - Fork 13k
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
bind'ing a native function behaves incorrectly #1174
Comments
Indeed, this works fine:
|
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Nov 19, 2011
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Nov 19, 2011
coastalwhite
pushed a commit
to coastalwhite/rust
that referenced
this issue
Aug 5, 2023
Naming right now for wasm simd intrinsics takes the signededness of the instruction into account, but some operations are the same regardless of signededness, such as `i32x4_add`. This commit adds aliases for all of these operations under unsigned names as well (such as `u32x4_add`) which are just a `pub use` to rename the item as two names. The goal of this is to assist in reading code (no need to switch back and forth between `i` and `u`) as well as writing code (no need to always remember which operations are the same for signed/unsigned but only available under the signed names).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following code is miscompiled on my OS X laptop:
I also reproed on my Linux machine, in which I captured this GDB session:
The text was updated successfully, but these errors were encountered: