diff options
| author | Tsukasa OI <floss_rust@irq.a4lg.com> | 2025-03-21 12:10:41 +0000 |
|---|---|---|
| committer | Amanieu d'Antras <amanieu@gmail.com> | 2025-03-24 23:47:00 +0000 |
| commit | 55fbe86255ad5079d9235349618baf63b55c8788 (patch) | |
| tree | dc2ef0351eae249a099b03c92725fe8e1f04d015 /library/stdarch/crates/std_detect/src/detect | |
| parent | 1c6d764b0ba92df8afe4c7fbd05c6f5d8c621882 (diff) | |
| download | rust-55fbe86255ad5079d9235349618baf63b55c8788.tar.gz rust-55fbe86255ad5079d9235349618baf63b55c8788.zip | |
tentatively remove the "B" RISC-V extension from the documentation
Although the "B" extension is redefined and ratified, keeping this in the
documentation as-is have two issues:
* "B" extension is not added to `riscv.rs` yet (to be added later).
* "B" extension is ratified as a combination of "Zba", "Zbb" and "Zbs"
extensions and "Zbc" is *not* a part of "B" itself (despite that
it is listed under "B"), which makes the documentation misleading.
This commit tentatively removes the reference to the "B" extension and
replaced with "Bit Manipulation Extensions" without an extension name.
Diffstat (limited to 'library/stdarch/crates/std_detect/src/detect')
| -rw-r--r-- | library/stdarch/crates/std_detect/src/detect/arch/riscv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/arch/riscv.rs b/library/stdarch/crates/std_detect/src/detect/arch/riscv.rs index dd3f0522dd9..2368131fea8 100644 --- a/library/stdarch/crates/std_detect/src/detect/arch/riscv.rs +++ b/library/stdarch/crates/std_detect/src/detect/arch/riscv.rs @@ -28,7 +28,7 @@ features! { /// * RV32I: `"rv32i"` /// * RV64I: `"rv64i"` /// * A: `"a"` - /// * B: `"b"` + /// * Bit-Manipulation Extensions: /// * Zba: `"zba"` /// * Zbb: `"zbb"` /// * Zbc: `"zbc"` |
