| Index: src/ia32/ic-ia32.cc | 
| diff --git a/src/ia32/ic-ia32.cc b/src/ia32/ic-ia32.cc | 
| index 3fe8fdb969615834b3b7a40e1db9505667d3a07e..76681ce1a188a5c1b642bf5c01a57b39d358b88d 100644 | 
| --- a/src/ia32/ic-ia32.cc | 
| +++ b/src/ia32/ic-ia32.cc | 
| @@ -1488,7 +1488,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 ------------- | 
| //  -- eax    : value | 
| //  -- ecx    : name | 
| @@ -1498,7 +1499,8 @@ void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { | 
|  | 
| Code::Flags flags = Code::ComputeFlags(Code::STORE_IC, | 
| NOT_IN_LOOP, | 
| -                                         MONOMORPHIC); | 
| +                                         MONOMORPHIC, | 
| +                                         extra_ic_state); | 
| StubCache::GenerateProbe(masm, flags, edx, ecx, ebx, no_reg); | 
|  | 
| // Cache miss: Jump to runtime. | 
|  |