Index: src/mips/lithium-mips.cc |
diff --git a/src/mips/lithium-mips.cc b/src/mips/lithium-mips.cc |
index 0a7fb446f9b0a9227889b9e325865bfe9b18ea6c..5697d816eeda3ed37833a3a1313554edac50d357 100644 |
--- a/src/mips/lithium-mips.cc |
+++ b/src/mips/lithium-mips.cc |
@@ -2354,14 +2354,6 @@ LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { |
} |
-LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) { |
- LOperand* object = UseFixed(instr->object(), a0); |
- LOperand* key = UseFixed(instr->key(), a1); |
- LDeleteProperty* result = new(zone()) LDeleteProperty(object, key); |
- return MarkAsCall(DefineFixed(result, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) { |
ASSERT(argument_count_ == 0); |
allocator_->MarkAsOsrEntry(); |
@@ -2534,14 +2526,6 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
} |
-LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
- LOperand* key = UseRegisterAtStart(instr->key()); |
- LOperand* object = UseRegisterAtStart(instr->object()); |
- LIn* result = new(zone()) LIn(key, object); |
- return MarkAsCall(DefineFixed(result, v0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
LOperand* object = UseFixed(instr->enumerable(), a0); |
LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); |