Skip to content

Commit d93e1d2

Browse files
committed
Fix a merge conflict
1 parent cd8f0df commit d93e1d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/x86/avx2.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use v128::*;
33
use x86::__m256i;
44

55
#[cfg(test)]
6-
use assert_instr::assert_instr;
6+
use stdsimd_test::assert_instr;
77

88
/// Computes the absolute values of packed 32-bit integers in `a`.
99
#[inline(always)]

src/x86/sse41.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v128::*;
22
use x86::__m128i;
33

44
#[cfg(test)]
5-
use assert_instr::assert_instr;
5+
use stdsimd_test::assert_instr;
66

77
#[inline(always)]
88
#[target_feature = "+sse4.1"]

src/x86/ssse3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use v128::*;
22

33
#[cfg(test)]
4-
use assert_instr::assert_instr;
4+
use stdsimd_test::assert_instr;
55

66
/// Compute the absolute value of packed 8-bit signed integers in `a` and
77
/// return the unsigned results.

0 commit comments

Comments
 (0)