Fix code style
This commit is contained in:
parent
aaee0709b3
commit
66ef866b34
1 changed files with 4 additions and 2 deletions
|
|
@ -5,8 +5,10 @@
|
|||
// fp64 support as it is sometimes implied by the target cpu, so
|
||||
// `#[cfg(target_feature = "fp64")]` will unfortunately not work. This is a
|
||||
// fairly conservative workaround that only disables MSA intrinsics for the PSP.
|
||||
#[cfg(not(target_os = "psp"))] mod msa;
|
||||
#[cfg(not(target_os = "psp"))] pub use self::msa::*;
|
||||
#[cfg(not(target_os = "psp"))]
|
||||
mod msa;
|
||||
#[cfg(not(target_os = "psp"))]
|
||||
pub use self::msa::*;
|
||||
|
||||
#[cfg(test)]
|
||||
use stdarch_test::assert_instr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue