Index: src/ic/mips64/ic-mips64.cc |
diff --git a/src/ic/mips64/ic-mips64.cc b/src/ic/mips64/ic-mips64.cc |
index a6075dfcaab4b2f6c7107d5279decee839f46675..79b025091dee5629e79dc3fa84624c96a3835fd5 100644 |
--- a/src/ic/mips64/ic-mips64.cc |
+++ b/src/ic/mips64/ic-mips64.cc |
@@ -317,7 +317,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); |
} |
@@ -348,8 +349,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); |
@@ -749,8 +750,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); |
} |
@@ -777,8 +778,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); |
} |