Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index 7357b30b6111ffa08094e6b3d5ba21524c18f699..a8905b45cb93620a1a09390b4f0c191f0cc0e464 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -2580,15 +2580,6 @@ LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { |
} |
-LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* object = UseAtStart(instr->object()); |
- LOperand* key = UseOrConstantAtStart(instr->key()); |
- LDeleteProperty* result = new(zone()) LDeleteProperty(context, object, key); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) { |
ASSERT(argument_count_ == 0); |
allocator_->MarkAsOsrEntry(); |
@@ -2769,15 +2760,6 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
} |
-LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
- LOperand* context = UseFixed(instr->context(), esi); |
- LOperand* key = UseOrConstantAtStart(instr->key()); |
- LOperand* object = UseOrConstantAtStart(instr->object()); |
- LIn* result = new(zone()) LIn(context, key, object); |
- return MarkAsCall(DefineFixed(result, eax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
LOperand* context = UseFixed(instr->context(), esi); |
LOperand* object = UseFixed(instr->enumerable(), eax); |