Skip to content

Commit d679b27

Browse files
paolotetialexcrichton
authored andcommitted
Fix x86 build on latest nightly (#533)
`cargo test --no-run` raise: ``` error[E0432]: unresolved import --> crates/coresimd/src/../../../coresimd/x86/rdtsc.rs:62:9 | 62 | use coresimd::x86::rdtsc; | ^^^^^^^^^^^^^^^^^^^^ ```
1 parent e6ff097 commit d679b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coresimd/x86/rdtsc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ extern "C" {
5959

6060
#[cfg(test)]
6161
mod tests {
62-
use coresimd::x86::rdtsc;
62+
use coresimd::x86::*;
6363
use stdsimd_test::simd_test;
6464

6565
#[simd_test(enable = "sse2")]

0 commit comments

Comments
 (0)