| Index: src/x64/ic-x64.cc
|
| diff --git a/src/x64/ic-x64.cc b/src/x64/ic-x64.cc
|
| index 12225f04cf0c0e91e2361b84319e1edb312e8b1d..15186680295aee30d1c6b192dd353639c50f543c 100644
|
| --- a/src/x64/ic-x64.cc
|
| +++ b/src/x64/ic-x64.cc
|
| @@ -735,10 +735,10 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm,
|
|
|
| // The generated code does not accept smi keys.
|
| // The generated code falls through if both probes miss.
|
| -static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
| - int argc,
|
| - Code::Kind kind,
|
| - Code::ExtraICState extra_ic_state) {
|
| +void CallICBase::GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
| + int argc,
|
| + Code::Kind kind,
|
| + Code::ExtraICState extra_state) {
|
| // ----------- S t a t e -------------
|
| // rcx : function name
|
| // rdx : receiver
|
| @@ -748,7 +748,7 @@ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
| // Probe the stub cache.
|
| Code::Flags flags = Code::ComputeFlags(kind,
|
| MONOMORPHIC,
|
| - extra_ic_state,
|
| + extra_state,
|
| NORMAL,
|
| argc);
|
| Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, rdx, rcx, rbx,
|
|
|