diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2024-08-01 14:33:04 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2024-08-01 14:33:04 -0700 |
| commit | ce7f1b77f400bbf42e2ca9628dec087c1a2605c5 (patch) | |
| tree | 299937990ee88a49327bc8ccc4150789d78df989 /src | |
| parent | cfe3ea65d29dbed12cf5466b51dbeb094a3729f1 (diff) | |
| download | rust-ce7f1b77f400bbf42e2ca9628dec087c1a2605c5.tar.gz rust-ce7f1b77f400bbf42e2ca9628dec087c1a2605c5.zip | |
Ignore two new doc blocks in testing
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md b/src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md index 2bd50f6e6db..a4b547bd1ff 100644 --- a/src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md +++ b/src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md @@ -163,7 +163,7 @@ final binary still has SIMD instructions, for example, the function in question will need to be found and the crate in question will likely contain something like: -```rust +```rust,ignore #[target_feature(enable = "simd128")] fn foo() { // ... @@ -176,7 +176,7 @@ at compile time either by default or through a Cargo feature. For crate authors it's recommended to avoid `#[target_feature(enable = "...")]` except where necessary and instead use: -```rust +```rust,ignore #[cfg(target_feature = "simd128")] fn foo() { // ... |
