Index: src/mips/ic-mips.cc |
diff --git a/src/mips/ic-mips.cc b/src/mips/ic-mips.cc |
index 334dee72c2ceba1e12beb2c0826b2d4c08c33339..a76c215a483829e2a51b1982fc87f1614ec16d64 100644 |
--- a/src/mips/ic-mips.cc |
+++ b/src/mips/ic-mips.cc |
@@ -395,7 +395,6 @@ static void GenerateMonomorphicCacheProbe(MacroAssembler* masm, |
// Probe the stub cache. |
Code::Flags flags = Code::ComputeFlags(kind, |
- NOT_IN_LOOP, |
MONOMORPHIC, |
extra_ic_state, |
NORMAL, |
@@ -732,9 +731,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, a0, a2, a3, t0, t1); |
@@ -1395,10 +1392,8 @@ void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
// ----------------------------------- |
// Get the receiver from the stack and probe the stub cache. |
- 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, a1, a2, a3, t0, t1); |