We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b86ab commit 391a9b2Copy full SHA for 391a9b2
src/unix/linux_like/linux/musl/b32/mod.rs
@@ -60,6 +60,9 @@ cfg_if! {
60
} else if #[cfg(any(target_arch = "hexagon"))] {
61
mod hexagon;
62
pub use self::hexagon::*;
63
+ } else if #[cfg(any(target_arch = "riscv32"))] {
64
+ mod riscv32;
65
+ pub use self::riscv32::*;
66
} else {
67
// Unknown target_arch
68
}
src/unix/linux_like/linux/musl/b32/riscv32/align.rs
@@ -0,0 +1,7 @@
1
+s_no_extra_traits! {
2
+ #[allow(missing_debug_implementations)]
3
+ #[repr(align(8))]
4
+ pub struct max_align_t {
5
+ priv_: (i64, f64)
6
+ }
7
+}
0 commit comments