| Index: src/compiler/bytecode-graph-builder.cc | 
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc | 
| index d61e3d32825b4ae8f5efff5214bfcb064086cfc1..87dddfb80ce5aebbd9d2867f74287b01ee23cb02 100644 | 
| --- a/src/compiler/bytecode-graph-builder.cc | 
| +++ b/src/compiler/bytecode-graph-builder.cc | 
| @@ -779,11 +779,12 @@ void BytecodeGraphBuilder::VisitStaDataPropertyInLiteral() { | 
| environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0)); | 
| Node* name = | 
| environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1)); | 
| -  Node* value = | 
| -      environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2)); | 
| -  int flags = bytecode_iterator().GetFlagOperand(3); | 
| +  Node* value = environment()->LookupAccumulator(); | 
| +  int flags = bytecode_iterator().GetFlagOperand(2); | 
| +  VectorSlotPair feedback = | 
| +      CreateVectorSlotPair(bytecode_iterator().GetIndexOperand(3)); | 
|  | 
| -  const Operator* op = javascript()->StoreDataPropertyInLiteral(); | 
| +  const Operator* op = javascript()->StoreDataPropertyInLiteral(feedback); | 
| Node* node = NewNode(op, object, name, value, jsgraph()->Constant(flags)); | 
| environment()->RecordAfterState(node, Environment::kAttachFrameState); | 
| } | 
|  |