Files
rust/compiler
Tsukasa OI 52392ec9e1 rustc_target: Use "B" shorthand on the RISC-V Android target
The "B" extension is ratified as a combination of three extensions: "Zba",
"Zbb" and "Zbs".  To maximize discoverability of the RISC-V target features,
this commit makes use of the "B" extension instead of its three members.

This way, `#[cfg(target_feature = "b")]` can also be used instead of:
`#[cfg(all(target_feature = "zba", target_feature = "zbb", target_feature = "zbs"))]`
2025-04-16 01:20:54 +00:00
..
2025-04-09 12:29:59 +01:00
2025-04-14 18:47:15 +00:00
2025-04-09 10:42:26 +00:00
2025-03-15 06:34:36 +00:00