File tree 4 files changed +4
-8
lines changed 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ pub unsafe fn _fxrstor(mem_addr: *const u8) {
51
51
52
52
#[ cfg( test) ]
53
53
mod tests {
54
- use coresimd:: x86:: i386 :: fxsr ;
55
- use std:: fmt;
54
+ use coresimd:: x86:: * ;
55
+ use std:: { fmt, cmp :: PartialEq } ;
56
56
use stdsimd_test:: simd_test;
57
57
58
58
#[ repr( align( 16 ) ) ]
Original file line number Diff line number Diff line change @@ -535,9 +535,7 @@ impl_from_bits_!(
535
535
mod eflags;
536
536
pub use self :: eflags:: * ;
537
537
538
- #[ cfg( dont_compile_me) ] // TODO: need to upstream `fxsr` target feature
539
538
mod fxsr;
540
- #[ cfg( dont_compile_me) ] // TODO: need to upstream `fxsr` target feature
541
539
pub use self :: fxsr:: * ;
542
540
543
541
mod bswap;
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ pub unsafe fn _fxrstor64(mem_addr: *const u8) {
51
51
52
52
#[ cfg( test) ]
53
53
mod tests {
54
- use coresimd:: x86 :: x86_64:: fxsr ;
55
- use std:: fmt;
54
+ use coresimd:: x86_64:: * ;
55
+ use std:: { fmt, cmp :: PartialEq } ;
56
56
use stdsimd_test:: simd_test;
57
57
58
58
#[ repr( align( 16 ) ) ]
Original file line number Diff line number Diff line change 1
1
//! `x86_64` intrinsics
2
2
3
- #[ cfg( dont_compile_me) ] // TODO: need to upstream `fxsr` target feature
4
3
mod fxsr;
5
- #[ cfg( dont_compile_me) ] // TODO: need to upstream `fxsr` target feature
6
4
pub use self :: fxsr:: * ;
7
5
8
6
mod sse;
You can’t perform that action at this time.
0 commit comments