We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cce6c5c commit ec6fccdCopy full SHA for ec6fccd
crates/core_arch/src/mips/mod.rs
@@ -1,13 +1,10 @@
1
//! MIPS
2
3
-// Building this module (even if unused) for non-fp64 targets such as the Sony
4
-// PSP fails with an LLVM error. There doesn't seem to be a good way to detect
5
-// fp64 support as it is sometimes implied by the target cpu, so
6
-// `#[cfg(target_feature = "fp64")]` will unfortunately not work. This is a
7
-// fairly conservative workaround that only disables MSA intrinsics for the PSP.
8
-#[cfg(not(target_os = "psp"))]
+// Building this module (even if unused) for non-fp64 targets fails with an LLVM
+// error.
+#[cfg(target_feature = "fp64")]
9
mod msa;
10
11
pub use self::msa::*;
12
13
#[cfg(test)]
0 commit comments