Index: src/x64/ic-x64.cc |
diff --git a/src/x64/ic-x64.cc b/src/x64/ic-x64.cc |
index 921c86835b133c3c4593bec1dc7b0451fc19ef49..8c2856f82df91d920c5f578fc241204aafc5bc9e 100644 |
--- a/src/x64/ic-x64.cc |
+++ b/src/x64/ic-x64.cc |
@@ -1473,7 +1473,8 @@ void KeyedLoadIC::GenerateRuntimeGetProperty(MacroAssembler* masm) { |
} |
-void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { |
+void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
+ Code::ExtraICState extra_ic_state) { |
// ----------- S t a t e ------------- |
// -- rax : value |
// -- rcx : name |
@@ -1484,7 +1485,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, rdx, rcx, rbx, no_reg); |
// Cache miss: Jump to runtime. |