-
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
Tracking Issue for std::arch::wasm64 #90599
Comments
Tracking issue: rust-lang/rust#90599
technically this is more than just simd |
As far as I can tell, the change to make core::arch::wasm unstable was a breaking change (Broke my new project for a nightly user: Craig-Macomber/lol_alloc#1 ) with a really confusing error (Why should using core::arch::wasm require truing on I think we should consider renaming that feature, and/or not disabling the entire core::arch::wasm module with it (as that prevents people from writing wasm target agnostic memory allocators since they can't use core::arch::wasm::memory_grow). |
|
Thats odd. I get no issues using it in
with Maybe there was a bug in marking of aliased paths unstable? I do get the error if I do So it seems like we have three issues:
|
I believe the stricter checking of stability was introduced by #95956. Can you open a separate issue for this? This issue is for tracking the stabilization of the wasm64 intrinsics. |
Feature gate:
#![feature(simd_wasm64)]
This is a tracking issue for
std::arch::wasm64
andstd::arch::wasm
modules, both of which are currently aliases forstd::arch::wasm32
.The text was updated successfully, but these errors were encountered: