[X86] Don't use loadv2i64 on SSE version of PMULHRSW. Use memopv2i64 instead.

This bug was introduced in r285501.

llvm-svn: 285510
This commit is contained in:
Craig Topper 2016-10-30 00:02:55 +00:00
parent ff76cfefc0
commit bf9e5a16a4
1 changed files with 1 additions and 1 deletions

View File

@ -5710,7 +5710,7 @@ let isCommutable = 0 in {
SSE_PMADD, memopv2i64>;
}
defm PMULHRSW : SS3I_binop_rm<0x0B, "pmulhrsw", X86mulhrs, v8i16, VR128,
loadv2i64, i128mem, SSE_PMULHRSW>;
memopv2i64, i128mem, SSE_PMULHRSW>;
}
//===---------------------------------------------------------------------===//