;
This commit is contained in:
parent
11cdae49f1
commit
673a668cad
3 changed files with 4 additions and 4 deletions
|
@ -1654,7 +1654,7 @@ namespace ARMeilleure.CodeGen.X86
|
|||
|
||||
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);
|
||||
}
|
||||
|
|
|
@ -268,7 +268,7 @@ namespace ARMeilleure.Instructions
|
|||
{
|
||||
if (setCarry)
|
||||
{
|
||||
SetFlag(context, PState.CFlag, Const(0));;
|
||||
SetFlag(context, PState.CFlag, Const(0));
|
||||
}
|
||||
|
||||
return Const(0);
|
||||
|
|
|
@ -907,7 +907,7 @@ namespace ARMeilleure.Instructions
|
|||
|
||||
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;
|
||||
|
||||
|
@ -939,7 +939,7 @@ namespace ARMeilleure.Instructions
|
|||
|
||||
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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue