Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index 048840f10b2945bc63ea26e6facaf9d879484aea..43f0fd32931fd9660a681e70ca8ee54babc3e345 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -1325,15 +1325,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* value = UseRegisterAtStart(instr->value()); |
- return DefineAsRegister(new(zone()) LBitNotI(value)); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoDiv(HDiv* instr) { |
if (instr->representation().IsDouble()) { |
return DoArithmeticD(Token::DIV, instr); |