Skip to content

Commit 846b51d

Browse files
committedFeb 1, 2018
Move AES vendor intrinsics from x86_64 to i686
Although i686 does not have the AES New Instructions, making code compatible across x86 and x64_64 tends to be easier if the intrinsics are available everywhere.
1 parent e79b661 commit 846b51d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 
File renamed without changes.

Diff for: ‎coresimd/src/x86/i686/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
//! `i686` intrinsics
22
3+
mod aes;
4+
pub use self::aes::*;
5+
36
mod mmx;
47
pub use self::mmx::*;
58

Diff for: ‎coresimd/src/x86/x86_64/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ pub use self::xsave::*;
2323
mod abm;
2424
pub use self::abm::*;
2525

26-
mod aes;
27-
pub use self::aes::*;
28-
2926
mod avx;
3027
pub use self::avx::*;
3128

0 commit comments

Comments
 (0)