Index: src/ic/mips/ic-mips.cc |
diff --git a/src/ic/mips/ic-mips.cc b/src/ic/mips/ic-mips.cc |
index cbc184c4846fd649ee3682e4fcbda48991b18e63..140bee05165bb83190cbc01a3909f112f451d917 100644 |
--- a/src/ic/mips/ic-mips.cc |
+++ b/src/ic/mips/ic-mips.cc |
@@ -320,7 +320,8 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadIC_PushArgs(masm); |
// Perform tail call to the entry. |
- ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss), isolate); |
+ ExternalReference ref = |
+ ExternalReference(Runtime::FunctionForId(Runtime::kLoadIC_Miss), isolate); |
int arg_count = 4; |
__ TailCallExternalReference(ref, arg_count, 1); |
} |
@@ -351,8 +352,8 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadIC_PushArgs(masm); |
// Perform tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedLoadIC_Miss), isolate); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kKeyedLoadIC_Miss), isolate); |
int arg_count = 4; |
__ TailCallExternalReference(ref, arg_count, 1); |
@@ -751,8 +752,8 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
__ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), |
StoreDescriptor::ValueRegister()); |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedStoreIC_Miss), masm->isolate()); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kKeyedStoreIC_Miss), masm->isolate()); |
__ TailCallExternalReference(ref, 3, 1); |
} |
@@ -779,8 +780,8 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
__ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), |
StoreDescriptor::ValueRegister()); |
// Perform tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kStoreIC_Miss), masm->isolate()); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kStoreIC_Miss), masm->isolate()); |
__ TailCallExternalReference(ref, 3, 1); |
} |