| Index: src/ia32/ic-ia32.cc
|
| diff --git a/src/ia32/ic-ia32.cc b/src/ia32/ic-ia32.cc
|
| index 3c49e60a5920f97256b680d1da89727203c2ec68..9b5cc5640108bf852eb5a0e624d819f688e305df 100644
|
| --- a/src/ia32/ic-ia32.cc
|
| +++ b/src/ia32/ic-ia32.cc
|
| @@ -832,7 +832,6 @@ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm,
|
|
|
| // Probe the stub cache.
|
| Code::Flags flags = Code::ComputeFlags(kind,
|
| - NOT_IN_LOOP,
|
| MONOMORPHIC,
|
| extra_ic_state,
|
| NORMAL,
|
| @@ -1237,9 +1236,7 @@ void LoadIC::GenerateMegamorphic(MacroAssembler* masm) {
|
| // -----------------------------------
|
|
|
| // Probe the stub cache.
|
| - Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC,
|
| - NOT_IN_LOOP,
|
| - MONOMORPHIC);
|
| + Code::Flags flags = Code::ComputeFlags(Code::LOAD_IC, MONOMORPHIC);
|
| Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, eax, ecx, ebx,
|
| edx);
|
|
|
| @@ -1339,10 +1336,8 @@ void StoreIC::GenerateMegamorphic(MacroAssembler* masm,
|
| // -- esp[0] : return address
|
| // -----------------------------------
|
|
|
| - Code::Flags flags = Code::ComputeFlags(Code::STORE_IC,
|
| - NOT_IN_LOOP,
|
| - MONOMORPHIC,
|
| - strict_mode);
|
| + Code::Flags flags =
|
| + Code::ComputeFlags(Code::STORE_IC, MONOMORPHIC, strict_mode);
|
| Isolate::Current()->stub_cache()->GenerateProbe(masm, flags, edx, ecx, ebx,
|
| no_reg);
|
|
|
|
|