aboutsummaryrefslogtreecommitdiff
path: root/ARMeilleure/Translation/CompilerContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ARMeilleure/Translation/CompilerContext.cs')
-rw-r--r--ARMeilleure/Translation/CompilerContext.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/ARMeilleure/Translation/CompilerContext.cs b/ARMeilleure/Translation/CompilerContext.cs
deleted file mode 100644
index 510dec58..00000000
--- a/ARMeilleure/Translation/CompilerContext.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-using ARMeilleure.IntermediateRepresentation;
-
-namespace ARMeilleure.Translation
-{
- readonly struct CompilerContext
- {
- public ControlFlowGraph Cfg { get; }
-
- public OperandType[] FuncArgTypes { get; }
- public OperandType FuncReturnType { get; }
-
- public CompilerOptions Options { get; }
-
- public CompilerContext(
- ControlFlowGraph cfg,
- OperandType[] funcArgTypes,
- OperandType funcReturnType,
- CompilerOptions options)
- {
- Cfg = cfg;
- FuncArgTypes = funcArgTypes;
- FuncReturnType = funcReturnType;
- Options = options;
- }
- }
-} \ No newline at end of file