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 d285ad5 commit bf72b03Copy full SHA for bf72b03
crates/core_arch/src/mips/mod.rs
@@ -5,6 +5,7 @@
5
#[cfg(target_feature = "fp64")]
6
mod msa;
7
8
+#[unstable(feature = "stdarch_mips", issue = "111198")]
9
pub use self::msa::*;
10
11
#[cfg(test)]
@@ -13,6 +14,7 @@ use stdarch_test::assert_instr;
13
14
/// Generates the trap instruction `BREAK`
15
#[cfg_attr(test, assert_instr(break))]
16
#[inline]
17
18
pub unsafe fn break_() -> ! {
19
crate::intrinsics::abort()
20
}
0 commit comments