This commit is contained in:
LDj3SNuD 2019-12-06 00:49:04 +01:00
commit 673a668cad
3 changed files with 4 additions and 4 deletions

View file

@ -1654,7 +1654,7 @@ namespace ARMeilleure.CodeGen.X86
for (int offset = PageSize; offset < size; offset += PageSize) for (int offset = PageSize; offset < size; offset += PageSize)
{ {
Operand memOp = new MemoryOperand(OperandType.I32, rsp, null, Multiplier.x1, -offset);; Operand memOp = new MemoryOperand(OperandType.I32, rsp, null, Multiplier.x1, -offset);
context.Assembler.Mov(temp, memOp, OperandType.I32); context.Assembler.Mov(temp, memOp, OperandType.I32);
} }

View file

@ -268,7 +268,7 @@ namespace ARMeilleure.Instructions
{ {
if (setCarry) if (setCarry)
{ {
SetFlag(context, PState.CFlag, Const(0));; SetFlag(context, PState.CFlag, Const(0));
} }
return Const(0); return Const(0);

View file

@ -907,7 +907,7 @@ namespace ARMeilleure.Instructions
Operand res = context.VectorZero(); Operand res = context.VectorZero();
Operand me = EmitVectorExtract(context, op.Rm, op.Index, op.Size, signed);; Operand me = EmitVectorExtract(context, op.Rm, op.Index, op.Size, signed);
int elems = 8 >> op.Size; int elems = 8 >> op.Size;
@ -939,7 +939,7 @@ namespace ARMeilleure.Instructions
Operand res = context.VectorZero(); Operand res = context.VectorZero();
Operand me = EmitVectorExtract(context, op.Rm, op.Index, op.Size, signed);; Operand me = EmitVectorExtract(context, op.Rm, op.Index, op.Size, signed);
int elems = 8 >> op.Size; int elems = 8 >> op.Size;