summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0442.stderr
blob: 6f19fd17eb2df2b19b3fa82129b4bec19808f3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0442]: intrinsic argument 1 has wrong type: found vector with length 16, expected length 8
  --> $DIR/E0442.rs:23:5
   |
23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0442]: intrinsic argument 2 has wrong type: found vector with length 4, expected length 8
  --> $DIR/E0442.rs:23:5
   |
23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error[E0442]: intrinsic return value has wrong type: found vector with length 2, expected length 8
  --> $DIR/E0442.rs:23:5
   |
23 |     fn x86_mm_adds_epi16(x: i8x16, y: i32x4) -> i64x2;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to 3 previous errors