blob: 4f96edccf12d5dbfccdf354bffc0521452c98d73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
using System.Reflection.Emit;
namespace ChocolArm64.Translation
{
class ILLabel : IILEmit
{
private bool _hasLabel;
private Label _lbl;
public void Emit(ILEmitter context)
{
context.Generator.MarkLabel(GetLabel(context));
}
public Label GetLabel(ILEmitter context)
{
if (!_hasLabel)
{
_lbl = context.Generator.DefineLabel();
_hasLabel = true;
}
return _lbl;
}
}
}
|