Index: src/ppc/lithium-ppc.cc |
diff --git a/src/ppc/lithium-ppc.cc b/src/ppc/lithium-ppc.cc |
index 53ebbd087bf4de88c089d0c4c2c9c686f8033641..8e2340a1aa263797520e645bf4487a03f91872c8 100644 |
--- a/src/ppc/lithium-ppc.cc |
+++ b/src/ppc/lithium-ppc.cc |
@@ -2092,7 +2092,7 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) { |
UseFixed(instr->global_object(), LoadDescriptor::ReceiverRegister()); |
LOperand* vector = NULL; |
if (instr->HasVectorAndSlot()) { |
- vector = FixedTemp(VectorLoadICDescriptor::VectorRegister()); |
+ vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
} |
LLoadGlobalGeneric* result = |
new (zone()) LLoadGlobalGeneric(context, global_object, vector); |
@@ -2141,7 +2141,7 @@ LInstruction* LChunkBuilder::DoLoadNamedGeneric(HLoadNamedGeneric* instr) { |
UseFixed(instr->object(), LoadDescriptor::ReceiverRegister()); |
LOperand* vector = NULL; |
if (instr->HasVectorAndSlot()) { |
- vector = FixedTemp(VectorLoadICDescriptor::VectorRegister()); |
+ vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
} |
LInstruction* result = |
@@ -2213,7 +2213,7 @@ LInstruction* LChunkBuilder::DoLoadKeyedGeneric(HLoadKeyedGeneric* instr) { |
LOperand* key = UseFixed(instr->key(), LoadDescriptor::NameRegister()); |
LOperand* vector = NULL; |
if (instr->HasVectorAndSlot()) { |
- vector = FixedTemp(VectorLoadICDescriptor::VectorRegister()); |
+ vector = FixedTemp(LoadWithVectorDescriptor::VectorRegister()); |
} |
LInstruction* result = DefineFixed( |