mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 05:36:43 +00:00
Remove useless return
This commit is contained in:
parent
08d13355ee
commit
bcab67f823
1 changed files with 1 additions and 3 deletions
|
@ -395,7 +395,7 @@ namespace ARMeilleure.Translation
|
||||||
return context.GetControlFlowGraph();
|
return context.GetControlFlowGraph();
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static Counter<uint> EmitRejitCheck(ArmEmitterContext context, out Counter<uint> counter)
|
internal static void EmitRejitCheck(ArmEmitterContext context, out Counter<uint> counter)
|
||||||
{
|
{
|
||||||
const int MinsCallForRejit = 100;
|
const int MinsCallForRejit = 100;
|
||||||
|
|
||||||
|
@ -412,8 +412,6 @@ namespace ARMeilleure.Translation
|
||||||
context.Call(typeof(NativeInterface).GetMethod(nameof(NativeInterface.EnqueueForRejit)), Const(context.EntryAddress));
|
context.Call(typeof(NativeInterface).GetMethod(nameof(NativeInterface.EnqueueForRejit)), Const(context.EntryAddress));
|
||||||
|
|
||||||
context.MarkLabel(lblEnd);
|
context.MarkLabel(lblEnd);
|
||||||
|
|
||||||
return counter;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static void EmitSynchronization(EmitterContext context)
|
internal static void EmitSynchronization(EmitterContext context)
|
||||||
|
|
Loading…
Reference in a new issue