| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index b4ce76bd393a0ee7fc566503626d0c39e15f8488..c0fcc87b449d886987de99ccb2d00dbcbc1ae55f 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -799,22 +799,6 @@
|
|
|
| const Operator* op = javascript()->StoreDataPropertyInLiteral(feedback);
|
| Node* node = NewNode(op, object, name, value, jsgraph()->Constant(flags));
|
| - environment()->RecordAfterState(node, Environment::kAttachFrameState);
|
| -}
|
| -
|
| -void BytecodeGraphBuilder::VisitCollectTypeProfile() {
|
| - PrepareEagerCheckpoint();
|
| -
|
| - Node* name =
|
| - environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
|
| - Node* value = environment()->LookupAccumulator();
|
| - Node* index = jsgraph()->Constant(bytecode_iterator().GetIndexOperand(1));
|
| -
|
| - Node* vector = jsgraph()->Constant(feedback_vector());
|
| -
|
| - const Operator* op = javascript()->CallRuntime(Runtime::kCollectTypeProfile);
|
| -
|
| - Node* node = NewNode(op, name, value, vector, index);
|
| environment()->RecordAfterState(node, Environment::kAttachFrameState);
|
| }
|
|
|
|
|