Add FNEG (vector) instruction
This commit is contained in:
parent
e0c3d9c8df
commit
7fe12ad169
2 changed files with 7 additions and 1 deletions
|
@ -221,6 +221,11 @@ namespace ChocolArm64.Instruction
|
|||
EmitScalarUnaryOpF(Context, () => Context.Emit(OpCodes.Neg));
|
||||
}
|
||||
|
||||
public static void Fneg_V(AILEmitterCtx Context)
|
||||
{
|
||||
EmitVectorUnaryOpF(Context, () => Context.Emit(OpCodes.Neg));
|
||||
}
|
||||
|
||||
public static void Fnmadd_S(AILEmitterCtx Context)
|
||||
{
|
||||
AOpCodeSimdReg Op = (AOpCodeSimdReg)Context.CurrOp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue