Remove another useless temp var
This commit is contained in:
parent
d48ed1ce46
commit
e2a46bcc2e
1 changed files with 1 additions and 3 deletions
|
@ -150,15 +150,13 @@ namespace ChocolArm64.Instruction
|
||||||
{
|
{
|
||||||
AOpCodeSimdShImm Op = (AOpCodeSimdShImm)Context.CurrOp;
|
AOpCodeSimdShImm Op = (AOpCodeSimdShImm)Context.CurrOp;
|
||||||
|
|
||||||
int Shift = GetImmShr(Op);
|
|
||||||
|
|
||||||
Action Emit = () =>
|
Action Emit = () =>
|
||||||
{
|
{
|
||||||
Context.Emit(OpCodes.Shr);
|
Context.Emit(OpCodes.Shr);
|
||||||
Context.Emit(OpCodes.Add);
|
Context.Emit(OpCodes.Add);
|
||||||
};
|
};
|
||||||
|
|
||||||
EmitVectorShImmTernarySx(Context, Emit, Shift);
|
EmitVectorShImmTernarySx(Context, Emit, GetImmShr(Op));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void Ushl_V(AILEmitterCtx Context)
|
public static void Ushl_V(AILEmitterCtx Context)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue