Index: src/x64/codegen-x64.cc |
=================================================================== |
--- src/x64/codegen-x64.cc (revision 3181) |
+++ src/x64/codegen-x64.cc (working copy) |
@@ -643,27 +643,6 @@ |
} |
-class CallFunctionStub: public CodeStub { |
- public: |
- CallFunctionStub(int argc, InLoopFlag in_loop) |
- : argc_(argc), in_loop_(in_loop) { } |
- |
- void Generate(MacroAssembler* masm); |
- |
- private: |
- int argc_; |
- InLoopFlag in_loop_; |
- |
-#ifdef DEBUG |
- void Print() { PrintF("CallFunctionStub (args %d)\n", argc_); } |
-#endif |
- |
- Major MajorKey() { return CallFunction; } |
- int MinorKey() { return argc_; } |
- InLoopFlag InLoop() { return in_loop_; } |
-}; |
- |
- |
void CodeGenerator::CallApplyLazy(Property* apply, |
Expression* receiver, |
VariableProxy* arguments, |