| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 1314e782e5409a35f73a1e61cecce3c7dfe33437..ace65a911cb0bcad5af291924031fba0f645c1bd 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -212,15 +212,6 @@ void LCmpIDAndBranch::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LIsNilAndBranch::PrintDataTo(StringStream* stream) {
|
| - stream->Add("if ");
|
| - value()->PrintTo(stream);
|
| - stream->Add(kind() == kStrictEquality ? " === " : " == ");
|
| - stream->Add(nil() == kNullValue ? "null" : "undefined");
|
| - stream->Add(" then B%d else B%d", true_block_id(), false_block_id());
|
| -}
|
| -
|
| -
|
| void LIsObjectAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if is_object(");
|
| value()->PrintTo(stream);
|
| @@ -1708,12 +1699,6 @@ LInstruction* LChunkBuilder::DoCompareConstantEqAndBranch(
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoIsNilAndBranch(HIsNilAndBranch* instr) {
|
| - ASSERT(instr->value()->representation().IsTagged());
|
| - return new(zone()) LIsNilAndBranch(UseRegisterAtStart(instr->value()));
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) {
|
| ASSERT(instr->value()->representation().IsTagged());
|
| LOperand* value = UseRegisterAtStart(instr->value());
|
|
|