aboutsummaryrefslogtreecommitdiff
path: root/ChocolArm64/Translation/ILOpCodeBranch.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ChocolArm64/Translation/ILOpCodeBranch.cs')
-rw-r--r--ChocolArm64/Translation/ILOpCodeBranch.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/ChocolArm64/Translation/ILOpCodeBranch.cs b/ChocolArm64/Translation/ILOpCodeBranch.cs
deleted file mode 100644
index 9d4e40fa..00000000
--- a/ChocolArm64/Translation/ILOpCodeBranch.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System.Reflection.Emit;
-
-namespace ChocolArm64.Translation
-{
- struct ILOpCodeBranch : IILEmit
- {
- public OpCode ILOp { get; }
- public ILLabel Label { get; }
-
- public ILOpCodeBranch(OpCode ilOp, ILLabel label)
- {
- ILOp = ilOp;
- Label = label;
- }
-
- public void Emit(ILMethodBuilder context)
- {
- context.Generator.Emit(ILOp, Label.GetLabel(context));
- }
- }
-} \ No newline at end of file