File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,3 +7,10 @@ pub use self::eflags::*;
7
7
mod fxsr;
8
8
#[ cfg( dont_compile_me) ] // TODO: need to upstream `fxsr` target feature
9
9
pub use self :: fxsr:: * ;
10
+
11
+ mod bswap;
12
+ pub use self :: bswap:: * ;
13
+
14
+ mod rdtsc;
15
+ pub use self :: rdtsc:: * ;
16
+
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ extern "C" {
54
54
#[ cfg( test) ]
55
55
mod tests {
56
56
use stdsimd_test:: simd_test;
57
- use x86:: i586 :: rdtsc;
57
+ use x86:: i386 :: rdtsc;
58
58
59
59
#[ simd_test = "sse2" ]
60
60
unsafe fn _rdtsc ( ) {
Original file line number Diff line number Diff line change 3
3
pub use self :: cpuid:: * ;
4
4
pub use self :: xsave:: * ;
5
5
6
- pub use self :: bswap:: * ;
7
-
8
- pub use self :: rdtsc:: * ;
9
-
10
6
pub use self :: sse:: * ;
11
7
pub use self :: sse2:: * ;
12
8
pub use self :: sse3:: * ;
@@ -26,10 +22,6 @@ pub use self::tbm::*;
26
22
mod cpuid;
27
23
mod xsave;
28
24
29
- mod bswap;
30
-
31
- mod rdtsc;
32
-
33
25
mod sse;
34
26
mod sse2;
35
27
mod sse3;
You can’t perform that action at this time.
0 commit comments