Chromium Code Reviews| 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 b416c3fecbb98e23be5d2912a7a242f4bf5e2ac1..62c13432db4a1d12a0e888e85467b3f7ea716245 100644 |
| --- a/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/variable_allocator.dart |
| @@ -550,7 +550,7 @@ class VariableNamer { |
| void freeName(HInstruction instruction) { |
| String ownName = names.ownName[instruction]; |
| if (ownName != null) { |
| - RegExp regexp = const RegExp('t[0-9]+'); |
| + RegExp regexp = new RegExp('t[0-9]+'); |
|
ahe
2012/11/12 13:35:03
Top-level final field?
Anders Johnsen
2012/11/12 13:45:38
Done, +static.
|
| // We check if we have already looked for temporary names |
| // because if we haven't, chances are the temporary we allocate |
| // in this block can match a phi with the same name in the |