| Index: src/compiler/ast-graph-builder.cc
|
| diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
|
| index 1877a681154fa5b047d26a70c15e5a319e9f58cf..8d2a9bf29bd567ba10a835b9e29e49e1944ef927 100644
|
| --- a/src/compiler/ast-graph-builder.cc
|
| +++ b/src/compiler/ast-graph-builder.cc
|
| @@ -1931,9 +1931,8 @@ Node* AstGraphBuilder::BuildVariableAssignment(Variable* variable, Node* value,
|
|
|
| Node* AstGraphBuilder::BuildLoadObjectField(Node* object, int offset) {
|
| // TODO(sigurds) Use simplified load here once it is ready.
|
| - MachineOperatorBuilder machine;
|
| - Node* field_load = NewNode(machine.Load(kMachAnyTagged), object,
|
| - jsgraph_->Int32Constant(offset - kHeapObjectTag));
|
| + Node* field_load = NewNode(jsgraph()->machine()->Load(kMachAnyTagged), object,
|
| + jsgraph()->Int32Constant(offset - kHeapObjectTag));
|
| return field_load;
|
| }
|
|
|
|
|