Index: src/arm/ic-arm.cc |
diff --git a/src/arm/ic-arm.cc b/src/arm/ic-arm.cc |
index 314a07f4dc517e395f56b7b947e70a116fc62683..1af6cf87b8f4b2dd0b2a2fb0e736428084973114 100644 |
--- a/src/arm/ic-arm.cc |
+++ b/src/arm/ic-arm.cc |
@@ -333,8 +333,7 @@ static void GenerateKeyNameCheck(MacroAssembler* masm, |
} |
-void LoadIC::GenerateMegamorphic(MacroAssembler* masm, |
- ExtraICState extra_state) { |
+void LoadIC::GenerateMegamorphic(MacroAssembler* masm) { |
// ----------- S t a t e ------------- |
// -- r2 : name |
// -- lr : return address |
@@ -342,7 +341,7 @@ void LoadIC::GenerateMegamorphic(MacroAssembler* masm, |
// ----------------------------------- |
// Probe the stub cache. |
- Code::Flags flags = Code::ComputeHandlerFlags(Code::LOAD_IC, extra_state); |
+ Code::Flags flags = Code::ComputeHandlerFlags(Code::LOAD_IC); |
masm->isolate()->stub_cache()->GenerateProbe( |
masm, flags, r0, r2, r3, r4, r5, r6); |
@@ -1160,8 +1159,7 @@ void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, |
} |
-void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
- ExtraICState extra_state) { |
+void StoreIC::GenerateMegamorphic(MacroAssembler* masm) { |
// ----------- S t a t e ------------- |
// -- r0 : value |
// -- r1 : receiver |
@@ -1170,7 +1168,7 @@ void StoreIC::GenerateMegamorphic(MacroAssembler* masm, |
// ----------------------------------- |
// Get the receiver from the stack and probe the stub cache. |
- Code::Flags flags = Code::ComputeHandlerFlags(Code::STORE_IC, extra_state); |
+ Code::Flags flags = Code::ComputeHandlerFlags(Code::STORE_IC); |
masm->isolate()->stub_cache()->GenerateProbe( |
masm, flags, r1, r2, r3, r4, r5, r6); |