| Index: src/crankshaft/x87/lithium-codegen-x87.cc
|
| diff --git a/src/crankshaft/x87/lithium-codegen-x87.cc b/src/crankshaft/x87/lithium-codegen-x87.cc
|
| index faa41649cba2ed5685d60b33fe04332fba1e776b..e069969695161d039774ec9b556d3cd357e6f600 100644
|
| --- a/src/crankshaft/x87/lithium-codegen-x87.cc
|
| +++ b/src/crankshaft/x87/lithium-codegen-x87.cc
|
| @@ -3971,21 +3971,6 @@ void LCodeGen::DoStoreNamedField(LStoreNamedField* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) {
|
| - DCHECK(ToRegister(instr->context()).is(esi));
|
| - DCHECK(ToRegister(instr->object()).is(StoreDescriptor::ReceiverRegister()));
|
| - DCHECK(ToRegister(instr->value()).is(StoreDescriptor::ValueRegister()));
|
| -
|
| - EmitVectorStoreICRegisters<LStoreNamedGeneric>(instr);
|
| -
|
| - __ mov(StoreDescriptor::NameRegister(), instr->name());
|
| - Handle<Code> ic =
|
| - CodeFactory::StoreICInOptimizedCode(isolate(), instr->language_mode())
|
| - .code();
|
| - CallCode(ic, RelocInfo::CODE_TARGET, instr);
|
| -}
|
| -
|
| -
|
| void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) {
|
| Condition cc = instr->hydrogen()->allow_equality() ? above : above_equal;
|
| if (instr->index()->IsConstantOperand()) {
|
|
|