aL placeholder until loops are implemented.

This commit is contained in:
Ben Vanik
2015-12-06 00:53:25 -08:00
parent 51a8002629
commit 083f936bbc
2 changed files with 4 additions and 0 deletions

View File

@@ -162,6 +162,8 @@ void ParsedLoopStartInstruction::Disassemble(StringBuffer* out) const {
void ParsedLoopEndInstruction::Disassemble(StringBuffer* out) const {
if (is_predicated_break) {
out->Append(predicate_condition ? " (p0) " : "(!p0) ");
} else {
out->Append(" ");
}
out->AppendFormat("endloop i%u, L%u", loop_constant_index, loop_body_address);
out->Append('\n');