| Index: src/stub-cache.h
|
| diff --git a/src/stub-cache.h b/src/stub-cache.h
|
| index 8c00ee8308ad95ceae825d5c4fe04c3ad28c1f62..0be32f121ec264a91e4b25d32ca125f03366e6fb 100644
|
| --- a/src/stub-cache.h
|
| +++ b/src/stub-cache.h
|
| @@ -336,10 +336,6 @@ Object* CallInterceptorProperty(Arguments args);
|
| Object* KeyedLoadPropertyWithInterceptor(Arguments args);
|
|
|
|
|
| -// Support function for computing call IC miss stubs.
|
| -Handle<Code> ComputeCallMiss(int argc, Code::Kind kind);
|
| -
|
| -
|
| // The stub compiler compiles stubs for the stub cache.
|
| class StubCompiler BASE_EMBEDDED {
|
| public:
|
| @@ -688,7 +684,9 @@ class CallStubCompiler: public StubCompiler {
|
|
|
| void GenerateNameCheck(String* name, Label* miss);
|
|
|
| - void GenerateMissBranch();
|
| + // Generates a jump to CallIC miss stub. Returns Failure if the jump cannot
|
| + // be generated.
|
| + Object* GenerateMissBranch();
|
| };
|
|
|
|
|
|
|