| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index a5ad91e998953dddfcf3f415866477cccde3333d..850ad409c53bbb42c8d58ac4f0df291f16b4841f 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -1626,6 +1626,13 @@ void BytecodeGraphBuilder::VisitDeletePropertySloppy() {
|
| BuildDelete(LanguageMode::SLOPPY);
|
| }
|
|
|
| +void BytecodeGraphBuilder::VisitGetSuperConstructor() {
|
| + Node* node = NewNode(javascript()->GetSuperConstructor(),
|
| + environment()->LookupAccumulator());
|
| + environment()->BindRegister(bytecode_iterator().GetRegisterOperand(0), node,
|
| + Environment::kAttachFrameState);
|
| +}
|
| +
|
| void BytecodeGraphBuilder::BuildCompareOp(const Operator* js_op) {
|
| PrepareEagerCheckpoint();
|
| Node* left =
|
|
|