Skip to content

Commit cce6c5c

Browse files
overdrivenpotatoAmanieu
authored andcommitted
Fix code style
1 parent 5066ab1 commit cce6c5c

File tree

1 file changed

+4
-2
lines changed
  • crates/core_arch/src/mips

1 file changed

+4
-2
lines changed

crates/core_arch/src/mips/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@
55
// fp64 support as it is sometimes implied by the target cpu, so
66
// `#[cfg(target_feature = "fp64")]` will unfortunately not work. This is a
77
// fairly conservative workaround that only disables MSA intrinsics for the PSP.
8-
#[cfg(not(target_os = "psp"))] mod msa;
9-
#[cfg(not(target_os = "psp"))] pub use self::msa::*;
8+
#[cfg(not(target_os = "psp"))]
9+
mod msa;
10+
#[cfg(not(target_os = "psp"))]
11+
pub use self::msa::*;
1012

1113
#[cfg(test)]
1214
use stdarch_test::assert_instr;

0 commit comments

Comments
 (0)