| Index: src/compiler/code-assembler.cc
|
| diff --git a/src/compiler/code-assembler.cc b/src/compiler/code-assembler.cc
|
| index 281186d729263124206c13a0b1c3c0632248958f..4cc39328eeec47392ba5d0a1ec5c4127d852c909 100644
|
| --- a/src/compiler/code-assembler.cc
|
| +++ b/src/compiler/code-assembler.cc
|
| @@ -416,6 +416,16 @@ Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
|
| return return_value;
|
| }
|
|
|
| +Node* CodeAssembler::CallRuntime(Runtime::FunctionId function_id, Node* context,
|
| + Node* arg1, Node* arg2, Node* arg3, Node* arg4,
|
| + Node* arg5) {
|
| + CallPrologue();
|
| + Node* return_value = raw_assembler_->CallRuntime5(function_id, arg1, arg2,
|
| + arg3, arg4, arg5, context);
|
| + CallEpilogue();
|
| + return return_value;
|
| +}
|
| +
|
| Node* CodeAssembler::TailCallRuntime(Runtime::FunctionId function_id,
|
| Node* context) {
|
| return raw_assembler_->TailCallRuntime0(function_id, context);
|
|
|