Skip to content

Commit 0481c67

Browse files
authored
Rollup merge of #89684 - asquared31415:asm-doc-fix, r=joshtriplett
Fix asm docs typo Fixes a typo in target feature names in the `asm` documentation
2 parents 346f833 + 4a565e5 commit 0481c67

File tree

1 file changed

+2
-2
lines changed
  • src/doc/unstable-book/src/library-features

1 file changed

+2
-2
lines changed

src/doc/unstable-book/src/library-features/asm.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -613,8 +613,8 @@ Each register class has constraints on which value types they can be used with.
613613
| x86 | `xmm_reg` | `sse` | `i32`, `f32`, `i64`, `f64`, <br> `i8x16`, `i16x8`, `i32x4`, `i64x2`, `f32x4`, `f64x2` |
614614
| x86 | `ymm_reg` | `avx` | `i32`, `f32`, `i64`, `f64`, <br> `i8x16`, `i16x8`, `i32x4`, `i64x2`, `f32x4`, `f64x2` <br> `i8x32`, `i16x16`, `i32x8`, `i64x4`, `f32x8`, `f64x4` |
615615
| 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` |
616-
| x86 | `kreg` | `axv512f` | `i8`, `i16` |
617-
| x86 | `kreg` | `axv512bw` | `i32`, `i64` |
616+
| x86 | `kreg` | `avx512f` | `i8`, `i16` |
617+
| x86 | `kreg` | `avx512bw` | `i32`, `i64` |
618618
| x86 | `mmx_reg` | N/A | Only clobbers |
619619
| x86 | `x87_reg` | N/A | Only clobbers |
620620
| AArch64 | `reg` | None | `i8`, `i16`, `i32`, `f32`, `i64`, `f64` |

0 commit comments

Comments
 (0)