Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 854ea15c2fa3cfe7ab3ea5e5c64918ff75ef9443..f9a01c7b93febb505c47282cdbe9de077b08e35c 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -2431,14 +2431,6 @@ LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { |
} |
-LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) { |
- LOperand* object = UseFixed(instr->object(), r0); |
- LOperand* key = UseFixed(instr->key(), r1); |
- LDeleteProperty* result = new(zone()) LDeleteProperty(object, key); |
- return MarkAsCall(DefineFixed(result, r0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) { |
ASSERT(argument_count_ == 0); |
allocator_->MarkAsOsrEntry(); |
@@ -2611,14 +2603,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, r0), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
LOperand* object = UseFixed(instr->enumerable(), r0); |
LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); |