|
12 | 12 |
|
13 | 13 | #![allow(experimental)]
|
14 | 14 |
|
15 |
| -use std::unstable::simd::f32x4; |
| 15 | +use std::simd::f32x4; |
16 | 16 |
|
17 | 17 | fn main() {
|
18 | 18 |
|
19 | 19 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) == f32x4(0.0, 0.0, 0.0, 0.0);
|
20 |
| - //~^ ERROR binary comparison operation `==` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 20 | + //~^ ERROR binary comparison operation `==` not supported for floating point SIMD vector `core::simd::f32x4` |
21 | 21 |
|
22 | 22 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) != f32x4(0.0, 0.0, 0.0, 0.0);
|
23 |
| - //~^ ERROR binary comparison operation `!=` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 23 | + //~^ ERROR binary comparison operation `!=` not supported for floating point SIMD vector `core::simd::f32x4` |
24 | 24 |
|
25 | 25 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) < f32x4(0.0, 0.0, 0.0, 0.0);
|
26 |
| - //~^ ERROR binary comparison operation `<` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 26 | + //~^ ERROR binary comparison operation `<` not supported for floating point SIMD vector `core::simd::f32x4` |
27 | 27 |
|
28 | 28 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) <= f32x4(0.0, 0.0, 0.0, 0.0);
|
29 |
| - //~^ ERROR binary comparison operation `<=` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 29 | + //~^ ERROR binary comparison operation `<=` not supported for floating point SIMD vector `core::simd::f32x4` |
30 | 30 |
|
31 | 31 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) >= f32x4(0.0, 0.0, 0.0, 0.0);
|
32 |
| - //~^ ERROR binary comparison operation `>=` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 32 | + //~^ ERROR binary comparison operation `>=` not supported for floating point SIMD vector `core::simd::f32x4` |
33 | 33 |
|
34 | 34 | let _ = f32x4(0.0, 0.0, 0.0, 0.0) > f32x4(0.0, 0.0, 0.0, 0.0);
|
35 |
| - //~^ ERROR binary comparison operation `>` not supported for floating point SIMD vector `std::unstable::simd::f32x4` |
| 35 | + //~^ ERROR binary comparison operation `>` not supported for floating point SIMD vector `core::simd::f32x4` |
36 | 36 |
|
37 | 37 | }
|
0 commit comments