From 66ef866b34090fa558b060d25982fec667b2260a Mon Sep 17 00:00:00 2001 From: Marko Mijalkovic Date: Thu, 7 May 2020 14:47:41 -0400 Subject: [PATCH] Fix code style --- library/stdarch/crates/core_arch/src/mips/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/stdarch/crates/core_arch/src/mips/mod.rs b/library/stdarch/crates/core_arch/src/mips/mod.rs index 39aee9911b47..1aaf8ef49c67 100644 --- a/library/stdarch/crates/core_arch/src/mips/mod.rs +++ b/library/stdarch/crates/core_arch/src/mips/mod.rs @@ -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;