| Index: pkg/compiler/lib/src/ssa/locals_handler.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/locals_handler.dart b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| index 1d9fdde9982fb4146858f4ac668e813321829338..79d73725abda67dfd70f49d362e494b7cc6bada3 100644
|
| --- a/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| +++ b/pkg/compiler/lib/src/ssa/locals_handler.dart
|
| @@ -575,7 +575,7 @@ class LocalsHandler {
|
| LocalsHandler mergeMultiple(
|
| List<LocalsHandler> localsHandlers, HBasicBlock joinBlock) {
|
| assert(localsHandlers.length > 0);
|
| - if (localsHandlers.length == 1) return localsHandlers[0];
|
| + if (localsHandlers.length == 1) return localsHandlers.single;
|
| Map<Local, HInstruction> joinedLocals = new Map<Local, HInstruction>();
|
| HInstruction thisValue = null;
|
| directLocals.forEach((Local local, HInstruction instruction) {
|
|
|