| Index: src/ia32/lithium-ia32.cc
|
| diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc
|
| index 9af47803fb583071b47093df7ab20dcecd22cfc2..82c7f0a3b331e752de3e7c0d4c41fb3ef99ff6b1 100644
|
| --- a/src/ia32/lithium-ia32.cc
|
| +++ b/src/ia32/lithium-ia32.cc
|
| @@ -1414,16 +1414,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);
|
|
|