Index: sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
index c1243d23a85b64df4ea6fff4862b7093dac2641c..f0552e8eb35092422e4bfda673eb39b69051d0be 100644 |
--- a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
+++ b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
@@ -546,7 +546,7 @@ class VariableNamer { |
// in this block can match a phi with the same name in the |
// successor block. |
if (temporaryIndex != 0 && regexp.hasMatch(ownName)) { |
- freeTemporaryNames.addLast(ownName); |
+ freeTemporaryNames.add(ownName); |
} |
usedNames.remove(ownName); |
} |