Chromium Code Reviews| Index: src/code-stubs.h |
| diff --git a/src/code-stubs.h b/src/code-stubs.h |
| index 1141cb56b31e16bd11f9bb46284849d47c58a918..bdace83eecf308f3ed7f277218b063cdb3b2124b 100644 |
| --- a/src/code-stubs.h |
| +++ b/src/code-stubs.h |
| @@ -739,6 +739,8 @@ class CallFunctionStub: public CodeStub { |
| void Generate(MacroAssembler* masm); |
| + virtual void FinishCode(Handle<Code> code); |
|
Yang
2012/01/27 15:52:38
You could inline this function here so that you do
Michael Starzinger
2012/01/27 16:10:52
Done.
|
| + |
| static int ExtractArgcFromMinorKey(int minor_key) { |
| return ArgcBits::decode(minor_key); |
| } |
| @@ -775,6 +777,8 @@ class CallConstructStub: public CodeStub { |
| void Generate(MacroAssembler* masm); |
| + virtual void FinishCode(Handle<Code> code); |
| + |
| private: |
| CallFunctionFlags flags_; |