mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
hotfix: Revert ADDC change
This commit is contained in:
parent
dd184fd95d
commit
edde0a3e7e
1 changed files with 2 additions and 1 deletions
|
@ -567,7 +567,8 @@ void Translator::V_ADDC_U32(const GcnInst& inst) {
|
||||||
const IR::U32 scarry = IR::U32{ir.Select(carry, ir.Imm32(1), ir.Imm32(0))};
|
const IR::U32 scarry = IR::U32{ir.Select(carry, ir.Imm32(1), ir.Imm32(0))};
|
||||||
const IR::U32 result = ir.IAdd(ir.IAdd(src0, src1), scarry);
|
const IR::U32 result = ir.IAdd(ir.IAdd(src0, src1), scarry);
|
||||||
|
|
||||||
SetDst(inst.dst[0], result);
|
const IR::VectorReg dst_reg{inst.dst[0].code};
|
||||||
|
ir.SetVectorReg(dst_reg, result);
|
||||||
|
|
||||||
const IR::U1 less_src0 = ir.ILessThan(result, src0, false);
|
const IR::U1 less_src0 = ir.ILessThan(result, src0, false);
|
||||||
const IR::U1 less_src1 = ir.ILessThan(result, src1, false);
|
const IR::U1 less_src1 = ir.ILessThan(result, src1, false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue