Skip to content

Commit

Permalink
Fix x86 build on latest nightly (rust-lang#533)
Browse files Browse the repository at this point in the history
`cargo test --no-run` raise:

```
error[E0432]: unresolved import
  --> crates/coresimd/src/../../../coresimd/x86/rdtsc.rs:62:9
   |
62 |     use coresimd::x86::rdtsc;
   |         ^^^^^^^^^^^^^^^^^^^^
```
  • Loading branch information
paoloteti authored and alexcrichton committed Jul 22, 2018
1 parent e6ff097 commit d679b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coresimd/x86/rdtsc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit d679b27

Please sign in to comment.