| Index: pkg/compiler/lib/src/ssa/optimize.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/optimize.dart b/pkg/compiler/lib/src/ssa/optimize.dart
|
| index c4eb3f28f0a93d2dfe5dae43b2579ba52d5174a2..f411f578eec6a96c57f13791cc128b94f95b8916 100644
|
| --- a/pkg/compiler/lib/src/ssa/optimize.dart
|
| +++ b/pkg/compiler/lib/src/ssa/optimize.dart
|
| @@ -402,8 +402,8 @@ class SsaInstructionSimplifier extends HBaseVisitor
|
| }
|
|
|
| // Try converting the instruction to a builtin instruction.
|
| - HInstruction instruction = node.specializer.tryConvertToBuiltin(
|
| - node, _globalInferenceResults, _options, _helpers, _closedWorld);
|
| + HInstruction instruction = node.specializer.tryConvertToBuiltin(node,
|
| + _graph, _globalInferenceResults, _options, _helpers, _closedWorld);
|
| if (instruction != null) return instruction;
|
|
|
| Selector selector = node.selector;
|
| @@ -1166,7 +1166,8 @@ class SsaInstructionSimplifier extends HBaseVisitor
|
| selector,
|
| input.instructionType, // receiver mask.
|
| inputs,
|
| - toStringType)..sourceInformation = node.sourceInformation;
|
| + toStringType)
|
| + ..sourceInformation = node.sourceInformation;
|
| return result;
|
| }
|
| return null;
|
|
|