1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 14:03:35 +01:00
Ryujinx/ChocolArm64/Translation/AILLabel.cs

28 lines
535 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using System.Reflection.Emit;
namespace ChocolArm64.Translation
{
class AILLabel : IAILEmit
{
private bool HasLabel;
private Label Lbl;
public void Emit(AILEmitter Context)
{
Context.Generator.MarkLabel(GetLabel(Context));
}
public Label GetLabel(AILEmitter Context)
{
if (!HasLabel)
{
Lbl = Context.Generator.DefineLabel();
HasLabel = true;
}
return Lbl;
}
}
}