Index: src/arm/lithium-arm.cc |
diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc |
index a40a747e3bb1ee9b2b2be1433a0cf9900fef7a59..ec58f8d670c9432d57f89d57af486723782aea0e 100644 |
--- a/src/arm/lithium-arm.cc |
+++ b/src/arm/lithium-arm.cc |
@@ -168,13 +168,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); |
@@ -1776,14 +1769,6 @@ LInstruction* LChunkBuilder::DoCompareMinusZeroAndBranch( |
} |
-LInstruction* LChunkBuilder::DoIsObjectAndBranch(HIsObjectAndBranch* instr) { |
- DCHECK(instr->value()->representation().IsTagged()); |
- LOperand* value = UseRegisterAtStart(instr->value()); |
- LOperand* temp = TempRegister(); |
- return new(zone()) LIsObjectAndBranch(value, temp); |
-} |
- |
- |
LInstruction* LChunkBuilder::DoIsStringAndBranch(HIsStringAndBranch* instr) { |
DCHECK(instr->value()->representation().IsTagged()); |
LOperand* value = UseRegisterAtStart(instr->value()); |