Uh oh!
There was an error while loading. Please reload this page.
fix _mm_castsi128_pd and _mm_castpd_si128 impls - #581
Conversation
The _mm_castX_Y SSE intrinsics are "reinterpreting" casts; LLVM's simd_cast is a "converting" cast. Replace simd_cast with mem::transmute. Fixes #55249
alexcrichton
commented
Oct 23, 2018
Thanks for this! This looks correct to me, and I'm trying to dig into why CI is failing now. |
alexcrichton
commented
Oct 23, 2018
Ok the segfault here is not the fault of this PR. I'm looking into pinning CI temoprarily to an older nightly to fix CI |
Output of `wasm2wat` has changed!
alexcrichton
commented
Oct 23, 2018
@kazcw if you're extra enterprising, the next step here is to update the |
MaskRay
commented
Jan 2, 2023
Likely due to rust-lang/rust#54592 switching the default. If you use lld, it didn't support |
The _mm_castX_Y SSE intrinsics are "reinterpreting" casts; LLVM's
simd_cast is a "converting" cast. Replace simd_casts with mem::transmute.
Fixesrust-lang/rust#55249