| Index: src/x87/lithium-x87.cc
|
| diff --git a/src/x87/lithium-x87.cc b/src/x87/lithium-x87.cc
|
| index d382e4f6d510fea422a690172aff36d89a3e567b..141d1de145b11e69f78a341ac401061e7d99c9b6 100644
|
| --- a/src/x87/lithium-x87.cc
|
| +++ b/src/x87/lithium-x87.cc
|
| @@ -198,13 +198,6 @@ void LCompareNumericAndBranch::PrintDataTo(StringStream* stream) {
|
| }
|
|
|
|
|
| -void LIsObjectAndBranch::PrintDataTo(StringStream* stream) {
|
| - stream->Add("if is_object(");
|
| - value()->PrintTo(stream);
|
| - stream->Add(") then B%d else B%d", true_block_id(), false_block_id());
|
| -}
|
| -
|
| -
|
| void LIsStringAndBranch::PrintDataTo(StringStream* stream) {
|
| stream->Add("if is_string(");
|
| value()->PrintTo(stream);
|
| @@ -1749,13 +1742,6 @@ LInstruction* LChunkBuilder::DoCompareMinusZeroAndBranch(
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) {
|
| - DCHECK(instr->value()->representation().IsSmiOrTagged());
|
| - LOperand* temp = TempRegister();
|
| - return new(zone()) LIsObjectAndBranch(UseRegister(instr->value()), temp);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) {
|
| DCHECK(instr->value()->representation().IsTagged());
|
| LOperand* temp = TempRegister();
|
|
|