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;
   |         ^^^^^^^^^^^^^^^^^^^^
```
This commit is contained in:
Paolo Teti 2018-07-22 17:58:21 +02:00 committed by Alex Crichton
parent f0eb5e1b3b
commit 8d663bd234

View file

@ -59,7 +59,7 @@ extern "C" {
#[cfg(test)]
mod tests {
use coresimd::x86::rdtsc;
use coresimd::x86::*;
use stdsimd_test::simd_test;
#[simd_test(enable = "sse2")]