emit_x64: Pass tmp to ExtractMostSignificantBitFromPackedBytes in EmitPackedAddU8

This commit is contained in:
MerryMage 2016-12-20 22:07:51 +00:00
parent 097f6a83da
commit 02b2ab7581

View file

@ -1420,7 +1420,7 @@ void EmitX64::EmitPackedAddU8(IR::Block& block, IR::Inst* inst) {
}
code->xor_(result, reg_a);
if (ge_inst) {
ExtractMostSignificantBitFromPackedBytes(cpu_info, code, reg_alloc, reg_ge);
ExtractMostSignificantBitFromPackedBytes(cpu_info, code, reg_alloc, reg_ge, tmp);
}
}