]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/simd-binop.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / simd-binop.rs
index efcd99a04cedd86534ddb475e9dee433b831cc9a..690ad351247099e8b9a8e1c05620b1ab15825ea6 100644 (file)
@@ -8,9 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![allow(experimental)]
+#![allow(unstable)]
 
-use std::unstable::simd::{i32x4, f32x4, u32x4};
+use std::simd::{i32x4, f32x4, u32x4};
 
 fn eq_u32x4(u32x4(x0, x1, x2, x3): u32x4, u32x4(y0, y1, y2, y3): u32x4) -> bool {
     (x0 == y0) && (x1 == y1) && (x2 == y2) && (x3 == y3)