| Index: src/x87/lithium-x87.cc
|
| diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc
|
| index 233d12c6039352288f4e7175d3ed625eca360a02..33540905594046f7be6acb39f5f65de4dc8fdd76 100644
|
| --- a/src/x87/lithium-x87.cc
|
| +++ b/src/x87/lithium-x87.cc
|
| @@ -2125,7 +2125,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 =
|
| @@ -2179,7 +2179,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());
|
| }
|
| LLoadNamedGeneric* result = new(zone()) LLoadNamedGeneric(
|
| context, object, vector);
|
| @@ -2251,7 +2251,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());
|
| }
|
| LLoadKeyedGeneric* result =
|
| new(zone()) LLoadKeyedGeneric(context, object, key, vector);
|
|
|