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);
|
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);
|
Debug.Assert(op.Type == OperandType.I32);
|
||||||
|
|
||||||
|
|
|
@ -480,11 +480,8 @@ namespace ARMeilleure.Instructions
|
||||||
}
|
}
|
||||||
public static void Rbit(ArmEmitterContext context)
|
public static void Rbit(ArmEmitterContext context)
|
||||||
{
|
{
|
||||||
OpCode32Alu op = (OpCode32Alu)context.CurrOp;
|
|
||||||
|
|
||||||
Operand m = GetAluM(context);
|
Operand m = GetAluM(context);
|
||||||
|
Operand res = InstEmit.EmitReverseBits32Op(context, m);
|
||||||
Operand res = context.Call(new _U32_U32(SoftFallback.ReverseBits32), m);
|
|
||||||
|
|
||||||
EmitAluStore(context, res);
|
EmitAluStore(context, res);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue