Index: src/ic/ia32/ic-ia32.cc |
diff --git a/src/ic/ia32/ic-ia32.cc b/src/ic/ia32/ic-ia32.cc |
index fb4d5f6ac07d490bf8b3221ea2d17357645a50a6..b759e5d83fe8b305e497df36f8b3398af0f7611a 100644 |
--- a/src/ic/ia32/ic-ia32.cc |
+++ b/src/ic/ia32/ic-ia32.cc |
@@ -678,10 +678,8 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadIC_PushArgs(masm); |
// Perform tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kLoadIC_Miss), masm->isolate()); |
int arg_count = 4; |
- __ TailCallExternalReference(ref, arg_count, 1); |
+ __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count, 1); |
} |
@@ -711,10 +709,8 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { |
LoadIC_PushArgs(masm); |
// Perform tail call to the entry. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedLoadIC_Miss), masm->isolate()); |
int arg_count = 4; |
- __ TailCallExternalReference(ref, arg_count, 1); |
+ __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count, 1); |
} |
@@ -770,8 +766,8 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// 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); |
} |
@@ -808,8 +804,8 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { |
StoreIC_PushArgs(masm); |
// Do tail-call to runtime routine. |
- ExternalReference ref = |
- ExternalReference(IC_Utility(kKeyedStoreIC_Miss), masm->isolate()); |
+ ExternalReference ref = ExternalReference( |
+ Runtime::FunctionForId(Runtime::kKeyedStoreIC_Miss), masm->isolate()); |
__ TailCallExternalReference(ref, 3, 1); |
} |