| Index: dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart b/dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| index def829dfdbfbe0f9f76952e973ef445b94dbbc1d..a9d9b8b61d47993d0a131f3b7cf987b5a5ca707c 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/ssa/builder.dart
|
| @@ -3065,7 +3065,7 @@ class SsaBuilder extends ResolvedVisitor implements Visitor {
|
| compiler.internalError("Unresolved element: $constructor", node: node);
|
| }
|
| FunctionElement functionElement = constructor;
|
| - constructor = functionElement.defaultImplementation;
|
| + constructor = functionElement.redirectionTarget;
|
| // TODO(5346): Try to avoid the need for calling [declaration] before
|
| // creating an [HStatic].
|
| HInstruction target = new HStatic(constructor.declaration);
|
|
|