Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 950bf4d7617679ee45f2010e013a68bb1b1ced73..4fa0683a0249e039ff1534cbd47ca3938a766d0f 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -2367,14 +2367,6 @@ LInstruction* LChunkBuilder::DoFunctionLiteral(HFunctionLiteral* instr) { |
} |
-LInstruction* LChunkBuilder::DoDeleteProperty(HDeleteProperty* instr) { |
- LOperand* object = UseAtStart(instr->object()); |
- LOperand* key = UseOrConstantAtStart(instr->key()); |
- LDeleteProperty* result = new(zone()) LDeleteProperty(object, key); |
- return MarkAsCall(DefineFixed(result, rax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoOsrEntry(HOsrEntry* instr) { |
ASSERT(argument_count_ == 0); |
allocator_->MarkAsOsrEntry(); |
@@ -2548,14 +2540,6 @@ LInstruction* LChunkBuilder::DoLeaveInlined(HLeaveInlined* instr) { |
} |
-LInstruction* LChunkBuilder::DoIn(HIn* instr) { |
- LOperand* key = UseOrConstantAtStart(instr->key()); |
- LOperand* object = UseOrConstantAtStart(instr->object()); |
- LIn* result = new(zone()) LIn(key, object); |
- return MarkAsCall(DefineFixed(result, rax), instr); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoForInPrepareMap(HForInPrepareMap* instr) { |
LOperand* object = UseFixed(instr->enumerable(), rax); |
LForInPrepareMap* result = new(zone()) LForInPrepareMap(object); |