Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 850ad409c53bbb42c8d58ac4f0df291f16b4841f..3c2f346c6e7c96be739dc8d8c957c0454d3b4e19 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -781,12 +781,10 @@ void BytecodeGraphBuilder::VisitStaDataPropertyInLiteral() { |
environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(1)); |
Node* value = |
environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(2)); |
- Node* attrs = |
- environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(3)); |
+ int flags = bytecode_iterator().GetFlagOperand(3); |
- Node* set_function_name = environment()->LookupAccumulator(); |
const Operator* op = javascript()->StoreDataPropertyInLiteral(); |
- Node* node = NewNode(op, object, name, value, attrs, set_function_name); |
+ Node* node = NewNode(op, object, name, value, jsgraph()->Constant(flags)); |
environment()->RecordAfterState(node, Environment::kAttachFrameState); |
} |