aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Translation/CompilerContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Translation/CompilerContext.cs')
-rw-r--r--src/ARMeilleure/Translation/CompilerContext.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ARMeilleure/Translation/CompilerContext.cs b/src/ARMeilleure/Translation/CompilerContext.cs
index 510dec58..5b10686b 100644
--- a/src/ARMeilleure/Translation/CompilerContext.cs
+++ b/src/ARMeilleure/Translation/CompilerContext.cs
@@ -6,21 +6,21 @@ namespace ARMeilleure.Translation
{
public ControlFlowGraph Cfg { get; }
- public OperandType[] FuncArgTypes { get; }
- public OperandType FuncReturnType { get; }
+ public OperandType[] FuncArgTypes { get; }
+ public OperandType FuncReturnType { get; }
public CompilerOptions Options { get; }
public CompilerContext(
ControlFlowGraph cfg,
- OperandType[] funcArgTypes,
- OperandType funcReturnType,
- CompilerOptions options)
+ OperandType[] funcArgTypes,
+ OperandType funcReturnType,
+ CompilerOptions options)
{
- Cfg = cfg;
- FuncArgTypes = funcArgTypes;
+ Cfg = cfg;
+ FuncArgTypes = funcArgTypes;
FuncReturnType = funcReturnType;
- Options = options;
+ Options = options;
}
}
-} \ No newline at end of file
+}