| Index: src/compiler/code-assembler.cc
|
| diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
|
| index 4dd7e790facfa61b10a187f9add2ec68b8c3c31c..9aacfc7ff5db7139c30247138b9dcc2d50f93a97 100644
|
| --- a/src/compiler/code-assembler.cc
|
| +++ b/src/compiler/code-assembler.cc
|
| @@ -859,6 +859,14 @@ Node* CodeAssembler::CallJS(Callable const& callable, Node* context,
|
| return CallN(call_descriptor, target, args);
|
| }
|
|
|
| +Node* CodeAssembler::CallCFunction2(MachineType return_type,
|
| + MachineType arg0_type,
|
| + MachineType arg1_type, Node* function,
|
| + Node* arg0, Node* arg1) {
|
| + return raw_assembler_->CallCFunction2(return_type, arg0_type, arg1_type,
|
| + function, arg0, arg1);
|
| +}
|
| +
|
| void CodeAssembler::Goto(CodeAssembler::Label* label) {
|
| label->MergeVariables();
|
| raw_assembler_->Goto(label->label_);
|
|
|