| Index: src/ic/ppc/ic-ppc.cc | 
| diff --git a/src/ic/ppc/ic-ppc.cc b/src/ic/ppc/ic-ppc.cc | 
| index db56fbaf669903a1271af0474de0d770031ebf1a..102dde4944af106ebcdbf35e5f63c17a7a68c319 100644 | 
| --- a/src/ic/ppc/ic-ppc.cc | 
| +++ b/src/ic/ppc/ic-ppc.cc | 
| @@ -323,9 +323,8 @@ void LoadIC::GenerateMiss(MacroAssembler* masm) { | 
| LoadIC_PushArgs(masm); | 
|  | 
| // Perform tail call to the entry. | 
| -  ExternalReference ref = ExternalReference(IC_Utility(kLoadIC_Miss), isolate); | 
| int arg_count = 4; | 
| -  __ TailCallExternalReference(ref, arg_count, 1); | 
| +  __ TailCallRuntime(Runtime::kLoadIC_Miss, arg_count, 1); | 
| } | 
|  | 
|  | 
| @@ -354,10 +353,8 @@ void KeyedLoadIC::GenerateMiss(MacroAssembler* masm) { | 
| LoadIC_PushArgs(masm); | 
|  | 
| // Perform tail call to the entry. | 
| -  ExternalReference ref = | 
| -      ExternalReference(IC_Utility(kKeyedLoadIC_Miss), isolate); | 
| int arg_count = 4; | 
| -  __ TailCallExternalReference(ref, arg_count, 1); | 
| +  __ TailCallRuntime(Runtime::kKeyedLoadIC_Miss, arg_count, 1); | 
| } | 
|  | 
|  | 
| @@ -482,9 +479,7 @@ void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { | 
| __ Push(StoreDescriptor::ReceiverRegister(), StoreDescriptor::NameRegister(), | 
| StoreDescriptor::ValueRegister()); | 
|  | 
| -  ExternalReference ref = | 
| -      ExternalReference(IC_Utility(kKeyedStoreIC_Miss), masm->isolate()); | 
| -  __ TailCallExternalReference(ref, 3, 1); | 
| +  __ TailCallRuntime(Runtime::kKeyedStoreIC_Miss, 3, 1); | 
| } | 
|  | 
|  | 
| @@ -790,9 +785,7 @@ void StoreIC::GenerateMiss(MacroAssembler* masm) { | 
| StoreDescriptor::ValueRegister()); | 
|  | 
| // Perform tail call to the entry. | 
| -  ExternalReference ref = | 
| -      ExternalReference(IC_Utility(kStoreIC_Miss), masm->isolate()); | 
| -  __ TailCallExternalReference(ref, 3, 1); | 
| +  __ TailCallRuntime(Runtime::kStoreIC_Miss, 3, 1); | 
| } | 
|  | 
|  | 
|  |