Remove non-existent x86 encoding for sshr_imm.i64x2

This instruction does not exist in the SSE2 feature set; it can be added later with an VEX/EVEX encoding.
This commit is contained in:
Andrew Brown
2020-05-21 15:25:20 -07:00
parent df171f01b5
commit 5a32500518
2 changed files with 5 additions and 8 deletions

View File

@@ -97,9 +97,3 @@ block0(v0: i32x4 [%xmm4]):
[-, %xmm4] v2 = sshr_imm v0, 10 ; bin: 66 0f 72 e4 0a
return v2
}
function %sshr_imm_i64x2(i64x2) -> i64x2 {
block0(v0: i64x2 [%xmm6]):
[-, %xmm6] v2 = sshr_imm v0, 42 ; bin: 66 0f 73 e6 2a
return v2
}