Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 6c37066ca56d6fdb83e747cbdce0c2dcebc039d5..774b7cecaacc96056e45ed08124c93de3d64a7f4 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1321,16 +1321,6 @@ LInstruction* LChunkBuilder::DoBitwise(HBitwise* instr) { |
} |
-LInstruction* LChunkBuilder::DoBitNot(HBitNot* instr) { |
- ASSERT(instr->value()->representation().IsInteger32()); |
- ASSERT(instr->representation().IsInteger32()); |
- if (instr->HasNoUses()) return NULL; |
- LOperand* input = UseRegisterAtStart(instr->value()); |
- LBitNotI* result = new(zone()) LBitNotI(input); |
- return DefineSameAsFirst(result); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
if (instr->representation().IsDouble()) { |
return DoArithmeticD(Token::DIV, instr); |