Index: src/compiler/code-assembler.h |
diff --git a/src/compiler/code-assembler.h b/src/compiler/code-assembler.h |
index 86275ee0a0ea3e6bb591a213fa5c0e1cfcaba6b1..054ba121516e5b57fe08a4dde1925050a293d46a 100644 |
--- a/src/compiler/code-assembler.h |
+++ b/src/compiler/code-assembler.h |
@@ -407,6 +407,10 @@ class V8_EXPORT_PRIVATE CodeAssembler { |
Node* CallCFunctionN(Signature<MachineType>* signature, int input_count, |
Node* const* inputs); |
+ // Call to a C function with one argument. |
+ Node* CallCFunction1(MachineType return_type, MachineType arg0_type, |
+ Node* function, Node* arg0); |
+ |
// Call to a C function with two arguments. |
Node* CallCFunction2(MachineType return_type, MachineType arg0_type, |
MachineType arg1_type, Node* function, Node* arg0, |