Index: src/ic/arm/ic-arm.cc |
diff --git a/src/ic/arm/ic-arm.cc b/src/ic/arm/ic-arm.cc |
index c85c6751a28ca7c355519769332c195a3e1468d1..e245e44a17061fac3f72c394ca9514ec083c345a 100644 |
--- a/src/ic/arm/ic-arm.cc |
+++ b/src/ic/arm/ic-arm.cc |
@@ -313,7 +313,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); |
} |
@@ -344,8 +345,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); |
} |
@@ -472,8 +473,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); |
} |
@@ -776,8 +777,8 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
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); |
} |