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.
2 parents ae3414c + 391a9b2 commit a31c793Copy full SHA for a31c793
src/unix/linux_like/linux/musl/b32/mod.rs
@@ -54,6 +54,9 @@ cfg_if! {
54
} else if #[cfg(any(target_arch = "hexagon"))] {
55
mod hexagon;
56
pub use self::hexagon::*;
57
+ } else if #[cfg(any(target_arch = "riscv32"))] {
58
+ mod riscv32;
59
+ pub use self::riscv32::*;
60
} else {
61
// Unknown target_arch
62
}
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