File tree Expand file tree Collapse file tree 4 files changed +818
-0
lines changed Top Open diff view settings
src/unix/linux_like/linux/musl Expand file tree Collapse file tree 4 files changed +818
-0
lines changed Top Open diff view settings Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ cfg_if! {
54
54
} else if #[ cfg( any( target_arch = "hexagon" ) ) ] {
55
55
mod hexagon;
56
56
pub use self :: hexagon:: * ;
57
+ } else if #[ cfg( any( target_arch = "riscv32" ) ) ] {
58
+ mod riscv32;
59
+ pub use self :: riscv32:: * ;
57
60
} else {
58
61
// Unknown target_arch
59
62
}
Original file line number Diff line number Diff line change
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
+ }
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -766,6 +766,7 @@ cfg_if! {
766
766
target_arch = "mips" ,
767
767
target_arch = "powerpc" ,
768
768
target_arch = "hexagon" ,
769
+ target_arch = "riscv32" ,
769
770
target_arch = "arm" ) ) ] {
770
771
mod b32;
771
772
pub use self :: b32:: * ;
You can’t perform that action at this time.
0 commit comments