-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't Use WasmGC Instructions Just Yet
At some point we had to switch away from `wasm-opt` automatically detecting the WebAssembly features, because they deprecated and turned that into a no-op. Since then we specified that it should just use all the features. This used to work all the time, but with the introduction of reference types it now started optimizing some of those instructions into instructions that are only available with the `WasmGC` proposal. This slipped through because Chrome and Firefox already support `WasmGC` but Safari does not... yet, because they also will start to support it very soon. In the meantime and also to ensure `wasm-opt` isn't ever going to sneak in any unwanted features, we now explicitly specify all the features that we want to use.
- Loading branch information
Showing
3 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters