Index: src/hydrogen-instructions.cc |
=================================================================== |
--- src/hydrogen-instructions.cc (revision 9218) |
+++ src/hydrogen-instructions.cc (working copy) |
@@ -1307,9 +1307,15 @@ |
left()->PrintNameTo(stream); |
stream->Add(" "); |
right()->PrintNameTo(stream); |
+ HControlInstruction::PrintDataTo(stream); |
} |
+void HGoto::PrintDataTo(StringStream* stream) { |
+ stream->Add("B%d", SuccessorAt(0)->block_id()); |
+} |
+ |
+ |
void HCompareIDAndBranch::SetInputRepresentation(Representation r) { |
input_representation_ = r; |
if (r.IsDouble()) { |