| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index cd2278c9a2954480655e7afd9faa0cc96bc28fcb..c0209e46f065c492668dff2a278607ab36f69be5 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);
|
|
|