| Index: src/crankshaft/ppc/lithium-ppc.cc
|
| diff --git a/src/crankshaft/ppc/lithium-ppc.cc b/src/crankshaft/ppc/lithium-ppc.cc
|
| index 79569fa718c452198cf08e2ee449147571cc75db..87080548482ccfd342f7dd334e20d6ea46a17bab 100644
|
| --- a/src/crankshaft/ppc/lithium-ppc.cc
|
| +++ b/src/crankshaft/ppc/lithium-ppc.cc
|
| @@ -2066,19 +2066,6 @@ LInstruction* LChunkBuilder::DoLoadKeyed(HLoadKeyed* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) {
|
| - LOperand* context = UseFixed(instr->context(), cp);
|
| - LOperand* object =
|
| - UseFixed(instr->object(), LoadDescriptor::ReceiverRegister());
|
| - LOperand* key = UseFixed(instr->key(), LoadDescriptor::NameRegister());
|
| - LOperand* vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister());
|
| -
|
| - LInstruction* result = DefineFixed(
|
| - new (zone()) LLoadKeyedGeneric(context, object, key, vector), r3);
|
| - return MarkAsCall(result, instr);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoStoreKeyed(HStoreKeyed* instr) {
|
| if (!instr->is_fixed_typed_array()) {
|
| DCHECK(instr->elements()->representation().IsTagged());
|
|
|