aboutsummaryrefslogtreecommitdiff
path: root/src/ARMeilleure/Translation/RegisterToLocal.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARMeilleure/Translation/RegisterToLocal.cs')
-rw-r--r--src/ARMeilleure/Translation/RegisterToLocal.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ARMeilleure/Translation/RegisterToLocal.cs b/src/ARMeilleure/Translation/RegisterToLocal.cs
index abb9b373..91372eb0 100644
--- a/src/ARMeilleure/Translation/RegisterToLocal.cs
+++ b/src/ARMeilleure/Translation/RegisterToLocal.cs
@@ -9,7 +9,7 @@ namespace ARMeilleure.Translation
{
public static void Rename(ControlFlowGraph cfg)
{
- Dictionary<Register, Operand> registerToLocalMap = new Dictionary<Register, Operand>();
+ Dictionary<Register, Operand> registerToLocalMap = new();
Operand GetLocal(Operand op)
{
@@ -49,4 +49,4 @@ namespace ARMeilleure.Translation
}
}
}
-} \ No newline at end of file
+}