Ah. I blame vim on this typo entirely.

This commit is contained in:
Ryan Houdek 2013-02-27 10:26:32 -06:00
parent e435851e7a
commit 8c779bb242
1 changed files with 1 additions and 1 deletions

View File

@ -791,7 +791,7 @@ void ARMXEmitter::VABS(ARMReg Vd, ARMReg Vm)
if (single_reg)
{
Write32(NO_COND | (0xEB << 20) | ((Vd & 0x1) << 6) | ((Vd & 0x1E) << 11) \
Write32(NO_COND | (0xEB << 20) | ((Vd & 0x1) << 22) | ((Vd & 0x1E) << 11) \
| (0xAC << 4) | ((Vm & 0x1) << 5) | (Vm >> 1));
}
else