Replace AND 0xFFFF with 16-bits zero extension (more efficient)
This commit is contained in:
parent
d1a58efda3
commit
5ed1534569
1 changed files with 1 additions and 1 deletions
|
@ -707,7 +707,7 @@ namespace ARMeilleure.Instructions
|
||||||
{
|
{
|
||||||
if (part == 0)
|
if (part == 0)
|
||||||
{
|
{
|
||||||
SetIntA32(context, op.Rd, context.BitwiseAnd(value, Const(0xffff)));
|
SetIntA32(context, op.Rd, context.ZeroExtend16(OperandType.I32, value));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue