File tree Expand file tree Collapse file tree 7 files changed +1458
-171
lines changed Expand file tree Collapse file tree 7 files changed +1458
-171
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ pub mod arch {
66
66
#[ doc( cfg( any( target_arch = "riscv32" ) ) ) ]
67
67
#[ unstable( feature = "riscv_ext_intrinsics" , issue = "114544" ) ]
68
68
pub mod riscv32 {
69
+ pub use crate :: core_arch:: riscv32:: * ;
69
70
pub use crate :: core_arch:: riscv_shared:: * ;
70
71
}
71
72
@@ -279,6 +280,10 @@ mod aarch64;
279
280
#[ doc( cfg( any( target_arch = "arm" ) ) ) ]
280
281
mod arm;
281
282
283
+ #[ cfg( any( target_arch = "riscv32" , doc) ) ]
284
+ #[ doc( cfg( any( target_arch = "riscv32" ) ) ) ]
285
+ mod riscv32;
286
+
282
287
#[ cfg( any( target_arch = "riscv64" , doc) ) ]
283
288
#[ doc( cfg( any( target_arch = "riscv64" ) ) ) ]
284
289
mod riscv64;
Original file line number Diff line number Diff line change
1
+ //! RISC-V RV32 specific intrinsics
2
+
3
+ mod zk;
4
+
5
+ pub use zk:: * ;
You can’t perform that action at this time.
0 commit comments