| Index: src/ic.cc
|
| ===================================================================
|
| --- src/ic.cc (revision 9574)
|
| +++ src/ic.cc (working copy)
|
| @@ -1007,7 +1007,7 @@
|
| break;
|
| }
|
| case CONSTANT_FUNCTION: {
|
| - Object* constant = lookup->GetConstantFunction();
|
| + JSFunction* constant = lookup->GetConstantFunction();
|
| maybe_code = isolate()->stub_cache()->ComputeLoadConstant(
|
| *name, *receiver, lookup->holder(), constant);
|
| break;
|
| @@ -1291,7 +1291,7 @@
|
| break;
|
| }
|
| case CONSTANT_FUNCTION: {
|
| - Object* constant = lookup->GetConstantFunction();
|
| + JSFunction* constant = lookup->GetConstantFunction();
|
| maybe_code = isolate()->stub_cache()->ComputeKeyedLoadConstant(
|
| *name, *receiver, lookup->holder(), constant);
|
| break;
|
|
|