Commit a99c3d70 by Sebastian Pop Committed by Sebastian Pop

improve FSM jump thread dump

From-SVN: r221021
parent a5ddeace
2015-02-26 Sebastian Pop <s.pop@samsung.com>
* tree-ssa-threadupdate.c (dump_jump_thread_path): Print all edges
of an EDGE_FSM_THREAD.
2015-02-25 Adhemerval Zanella <azanella@linux.vnet.ibm.com>
* config/rs6000/htm.md (tcheck): Fix assembly encoding.
......
......@@ -197,6 +197,9 @@ dump_jump_thread_path (FILE *dump_file, vec<jump_thread_edge *> path,
if (path[i]->type == EDGE_NO_COPY_SRC_BLOCK)
fprintf (dump_file, " (%d, %d) nocopy;",
path[i]->e->src->index, path[i]->e->dest->index);
if (path[0]->type == EDGE_FSM_THREAD)
fprintf (dump_file, " (%d, %d) ",
path[i]->e->src->index, path[i]->e->dest->index);
}
fputc ('\n', dump_file);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment