mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:38:32 +00:00
21 lines
448 B
C#
21 lines
448 B
C#
|
using System.Reflection.Emit;
|
||
|
|
||
|
namespace ChocolArm64.Translation
|
||
|
{
|
||
|
struct ILOpCodeBranch : IILEmit
|
||
|
{
|
||
|
private OpCode _ilOp;
|
||
|
private ILLabel _label;
|
||
|
|
||
|
public ILOpCodeBranch(OpCode ilOp, ILLabel label)
|
||
|
{
|
||
|
_ilOp = ilOp;
|
||
|
_label = label;
|
||
|
}
|
||
|
|
||
|
public void Emit(ILEmitter context)
|
||
|
{
|
||
|
context.Generator.Emit(_ilOp, _label.GetLabel(context));
|
||
|
}
|
||
|
}
|
||
|
}
|