Fix build issues
This commit is contained in:
parent
600a8b5e9e
commit
afe6f87c08
2 changed files with 2 additions and 5 deletions
|
@ -276,7 +276,7 @@ namespace ARMeilleure.Instructions
|
|||
SetAluDOrZR(context, d);
|
||||
}
|
||||
|
||||
private static Operand EmitReverseBits32Op(ArmEmitterContext context, Operand op)
|
||||
public static Operand EmitReverseBits32Op(ArmEmitterContext context, Operand op)
|
||||
{
|
||||
Debug.Assert(op.Type == OperandType.I32);
|
||||
|
||||
|
|
|
@ -480,11 +480,8 @@ namespace ARMeilleure.Instructions
|
|||
}
|
||||
public static void Rbit(ArmEmitterContext context)
|
||||
{
|
||||
OpCode32Alu op = (OpCode32Alu)context.CurrOp;
|
||||
|
||||
Operand m = GetAluM(context);
|
||||
|
||||
Operand res = context.Call(new _U32_U32(SoftFallback.ReverseBits32), m);
|
||||
Operand res = InstEmit.EmitReverseBits32Op(context, m);
|
||||
|
||||
EmitAluStore(context, res);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue