]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0442.stderr
Move some E0XXX to `ui`
[rust.git] / src / test / ui / error-codes / E0442.stderr
1 error[E0442]: intrinsic argument 1 has wrong type: found vector with length 16, expected length 8
2   --> $DIR/E0442.rs:23:5
3    |
4 23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6
7 error[E0442]: intrinsic argument 2 has wrong type: found vector with length 4, expected length 8
8   --> $DIR/E0442.rs:23:5
9    |
10 23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
11    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 error[E0442]: intrinsic return value has wrong type: found vector with length 2, expected length 8
14   --> $DIR/E0442.rs:23:5
15    |
16 23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
17    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20