1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
mod v8;
pub use self::v8::*;
mod neon;
pub use self::neon::*;
mod tme;
pub use self::tme::*;
mod crc;
pub use self::crc::*;
mod prefetch;
pub use self::prefetch::*;
pub use super::arm_shared::*;
mod armclang;
pub use self::armclang::*;
#[cfg(test)]
use stdarch_test::assert_instr;
#[cfg_attr(test, assert_instr(brk))]
#[inline]
pub unsafe fn brk() -> ! {
    crate::intrinsics::abort()
}
#[cfg(test)]
pub(crate) mod test_support;