diff options
| author | bors <bors@rust-lang.org> | 2021-10-09 10:00:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-10-09 10:00:54 +0000 |
| commit | bb918d0a5bf22211df0423f7474e4e4056978007 (patch) | |
| tree | e04106a063fb7c42b2a898f95024ff6ce29fe4ac /src/doc | |
| parent | 910692de742e9c0b1a57b7c5e467b8b85d903269 (diff) | |
| parent | 2e5a5e22b215b9dc59386315f5562c0517cec064 (diff) | |
| download | rust-bb918d0a5bf22211df0423f7474e4e4056978007.tar.gz rust-bb918d0a5bf22211df0423f7474e4e4056978007.zip | |
Auto merge of #89698 - matthiaskrgr:rollup-gna54x6, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #88707 (String.split_terminator: Add an example when using a slice of chars) - #89605 (Fix stabilization version for `bindings_after_at`) - #89634 (rustc_driver: Enable the `WARN` log level by default) - #89641 (make #[target_feature] work with `asm` register classes) - #89678 (Fix minor std::thread documentation typo) - #89684 (Fix asm docs typo) - #89687 (Move `read2_abbreviated` function into read2.rs) - #89693 (Add #[must_use] to stdin/stdout/stderr locks) - #89694 (Add #[must_use] to string/char transformation methods) - #89697 (Fix min LLVM version for bpf-types test) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/unstable-book/src/library-features/asm.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/unstable-book/src/library-features/asm.md b/src/doc/unstable-book/src/library-features/asm.md index ccaf6e8733e..a2afa88028f 100644 --- a/src/doc/unstable-book/src/library-features/asm.md +++ b/src/doc/unstable-book/src/library-features/asm.md @@ -613,8 +613,8 @@ Each register class has constraints on which value types they can be used with. | x86 | `xmm_reg` | `sse` | `i32`, `f32`, `i64`, `f64`, <br> `i8x16`, `i16x8`, `i32x4`, `i64x2`, `f32x4`, `f64x2` | | x86 | `ymm_reg` | `avx` | `i32`, `f32`, `i64`, `f64`, <br> `i8x16`, `i16x8`, `i32x4`, `i64x2`, `f32x4`, `f64x2` <br> `i8x32`, `i16x16`, `i32x8`, `i64x4`, `f32x8`, `f64x4` | | x86 | `zmm_reg` | `avx512f` | `i32`, `f32`, `i64`, `f64`, <br> `i8x16`, `i16x8`, `i32x4`, `i64x2`, `f32x4`, `f64x2` <br> `i8x32`, `i16x16`, `i32x8`, `i64x4`, `f32x8`, `f64x4` <br> `i8x64`, `i16x32`, `i32x16`, `i64x8`, `f32x16`, `f64x8` | -| x86 | `kreg` | `axv512f` | `i8`, `i16` | -| x86 | `kreg` | `axv512bw` | `i32`, `i64` | +| x86 | `kreg` | `avx512f` | `i8`, `i16` | +| x86 | `kreg` | `avx512bw` | `i32`, `i64` | | x86 | `mmx_reg` | N/A | Only clobbers | | x86 | `x87_reg` | N/A | Only clobbers | | AArch64 | `reg` | None | `i8`, `i16`, `i32`, `f32`, `i64`, `f64` | |
