Skip to content

Commit 85bb9f8

Browse files
Update posts/2021-07-29-Rust-1.54.0.md
Co-authored-by: Josh Triplett <josh@joshtriplett.org>
1 parent 4c0c20e commit 85bb9f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2021-07-29-Rust-1.54.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A number of intrinsics for the wasm32 platform have been stabilized, which gives
5050

5151
Notably, unlike the previously stabilized `x86` and `x86_64` intrinsics, these do not have a safety requirement to only be called when the appropriate target feature is enabled. This is because WebAssembly was written from the start to validate code safely before executing it, so instructions are guaranteed to be decoded correctly (or not at all).
5252

53-
This means that we can expose some of the intrinsics as entirely safe functions, for example [`v128_bitselect`](https://doc.rust-lang.org/beta/core/arch/wasm32/fn.v128_bitselect.html). However, there are still some intrinsics which are unsafe, such as [`v128_load`](https://doc.rust-lang.org/beta/core/arch/wasm32/fn.v128_load.html).
53+
This means that we can expose some of the intrinsics as entirely safe functions, for example [`v128_bitselect`](https://doc.rust-lang.org/beta/core/arch/wasm32/fn.v128_bitselect.html). However, there are still some intrinsics which are unsafe because they use raw pointers, such as [`v128_load`](https://doc.rust-lang.org/beta/core/arch/wasm32/fn.v128_load.html).
5454

5555
### Incremental Compilation is XXX by default
5656

0 commit comments

Comments
 (0)