| Index: src/compiler/raw-machine-assembler.h
 | 
| diff --git a/src/compiler/raw-machine-assembler.h b/src/compiler/raw-machine-assembler.h
 | 
| index 19ea2b0ad15f767b77aebe566a0b7da8ec04a62a..5fc710772e9d4645d3f1e2bdbe59ed9d8583cc78 100644
 | 
| --- a/src/compiler/raw-machine-assembler.h
 | 
| +++ b/src/compiler/raw-machine-assembler.h
 | 
| @@ -479,28 +479,25 @@
 | 
|      return HeapConstant(isolate()->factory()->InternalizeUtf8String(string));
 | 
|    }
 | 
|  
 | 
| -  // Call a given call descriptor and the given arguments.
 | 
| -  Node* CallN(CallDescriptor* desc, Node* function, Node** args);
 | 
| -
 | 
|    // Call through CallFunctionStub with lazy deopt and frame-state.
 | 
|    Node* CallFunctionStub0(Node* function, Node* receiver, Node* context,
 | 
|                            Node* frame_state, CallFunctionFlags flags);
 | 
| -  // Call to a JS function with zero arguments.
 | 
| +  // Call to a JS function with zero parameters.
 | 
|    Node* CallJS0(Node* function, Node* receiver, Node* context,
 | 
|                  Node* frame_state);
 | 
| -  // Call to a runtime function with zero arguments.
 | 
| +  // Call to a runtime function with zero parameters.
 | 
|    Node* CallRuntime1(Runtime::FunctionId function, Node* arg0, Node* context,
 | 
|                       Node* frame_state);
 | 
| -  // Call to a C function with zero arguments.
 | 
| +  // Call to a C function with zero parameters.
 | 
|    Node* CallCFunction0(MachineType return_type, Node* function);
 | 
|    // Call to a C function with one parameter.
 | 
|    Node* CallCFunction1(MachineType return_type, MachineType arg0_type,
 | 
|                         Node* function, Node* arg0);
 | 
| -  // Call to a C function with two arguments.
 | 
| +  // Call to a C function with two parameters.
 | 
|    Node* CallCFunction2(MachineType return_type, MachineType arg0_type,
 | 
|                         MachineType arg1_type, Node* function, Node* arg0,
 | 
|                         Node* arg1);
 | 
| -  // Call to a C function with eight arguments.
 | 
| +  // Call to a C function with eight parameters.
 | 
|    Node* CallCFunction8(MachineType return_type, MachineType arg0_type,
 | 
|                         MachineType arg1_type, MachineType arg2_type,
 | 
|                         MachineType arg3_type, MachineType arg4_type,
 | 
| 
 |