There was an error while loading. Please reload this page.
1 parent 8b747be commit 9c541c2Copy full SHA for 9c541c2
library/stdarch/crates/core_arch/src/acle/dsp.rs
@@ -20,6 +20,9 @@
20
//! - [ ] __smlawb
21
//! - [ ] __smlawt
22
23
+#[cfg(test)]
24
+use stdsimd_test::assert_instr;
25
+
26
extern "C" {
27
#[link_name = "llvm.arm.qadd"]
28
fn arm_qadd(a: i32, b: i32) -> i32;
library/stdarch/crates/core_arch/src/acle/simd32.rs
@@ -62,6 +62,9 @@
62
//! - [x] __smusd
63
//! - [x] __smusdx
64
65
66
67
68
types! {
69
/// ARM-specific 32-bit wide vector of four packed `i8`.
70
pub struct int8x4_t(i8, i8, i8, i8);
0 commit comments