Skip to content

Commit 5e9621e

Browse files
japaricgnzlbg
authored andcommitted
add missing imports
1 parent 5057759 commit 5e9621e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

crates/core_arch/src/acle/dsp.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
//! - [ ] __smlawb
2121
//! - [ ] __smlawt
2222
23+
#[cfg(test)]
24+
use stdsimd_test::assert_instr;
25+
2326
extern "C" {
2427
#[link_name = "llvm.arm.qadd"]
2528
fn arm_qadd(a: i32, b: i32) -> i32;

crates/core_arch/src/acle/simd32.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
//! - [x] __smusd
6363
//! - [x] __smusdx
6464
65+
#[cfg(test)]
66+
use stdsimd_test::assert_instr;
67+
6568
types! {
6669
/// ARM-specific 32-bit wide vector of four packed `i8`.
6770
pub struct int8x4_t(i8, i8, i8, i8);

0 commit comments

Comments
 (0)