Index: src/arm/ic-arm.cc |
diff --git a/src/arm/ic-arm.cc b/src/arm/ic-arm.cc |
index 60c10676c7c1a8aa4341d901a8b8e6c64cbbc30d..8c76458e75f6ae9b42f25ec2c0a5cef21adefe5c 100644 |
--- a/src/arm/ic-arm.cc |
+++ b/src/arm/ic-arm.cc |
@@ -1533,7 +1533,8 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm) { |
} |
-void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { |
+void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
+ Code::ExtraICState extra_ic_state) { |
// ----------- S t a t e ------------- |
// -- r0 : value |
// -- r1 : receiver |
@@ -1544,7 +1545,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); |
+ MONOMORPHIC, |
+ extra_ic_state); |
StubCache::GenerateProbe(masm, flags, r1, r2, r3, r4, r5); |
// Cache miss: Jump to runtime. |