Skip to content

Commit feb068b

Browse files
committed
hs1-siv: account for i686 in hash/sse2.rs
1 parent 1ff89ad commit feb068b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

hs1-siv/src/hash/sse2.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
use super::{mask, poly_step, Array, Hasher, Hs1Params};
2+
#[cfg(target_arch = "x86")]
3+
use core::arch::x86::*;
4+
#[cfg(target_arch = "x86_64")]
25
use core::arch::x86_64::*;
36

47
impl<P: Hs1Params> Hasher<P> {

0 commit comments

Comments
 (0)