diff --git a/DMCompiler/Optimizer/PeepholeOptimizations.cs b/DMCompiler/Optimizer/PeepholeOptimizations.cs index cb9e957ddf..291e152e5c 100644 --- a/DMCompiler/Optimizer/PeepholeOptimizations.cs +++ b/DMCompiler/Optimizer/PeepholeOptimizations.cs @@ -272,7 +272,7 @@ public void Apply(List input, int index) { // Otherwise, replace with PushNOfStringFloat int stackDelta = 0; - List args = new List(2 * count + 1); + List args = new List(2 * count + 1) { new AnnotatedBytecodeInteger(count, input[index].GetLocation()) }; args.Add(new AnnotatedBytecodeInteger(count, input[index].GetLocation())); for (int i = 0; i < count; i++) {