Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index 9d0cddf145ad737cee5d4911fef08cccf1bc88bb..7cf80ab3e3d58140c42849f2ba24cc8f7d7a771f 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -706,19 +706,17 @@ class HGraphBuilder: public AstVisitor { |
HBasicBlock* true_block, |
HBasicBlock* false_block); |
- // Visit an argument and wrap it in a PushArgument instruction. |
- HValue* VisitArgument(Expression* expr); |
+ // Visit an argument subexpression. |
+ void VisitArgument(Expression* expr); |
void VisitArgumentList(ZoneList<Expression*>* arguments); |
void AddPhi(HPhi* phi); |
void PushAndAdd(HInstruction* instr); |
- void PushArgumentsForStubCall(int argument_count); |
- |
// Remove the arguments from the bailout environment and emit instructions |
// to push them as outgoing parameters. |
- void ProcessCall(HCall* call); |
+ void PreProcessCall(HCall* call); |
void AssumeRepresentation(HValue* value, Representation r); |
static Representation ToRepresentation(TypeInfo info); |