aboutsummaryrefslogtreecommitdiff
path: root/ssa.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-06 13:24:47 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-06 13:24:47 +0800
commitbc0b78bde2a8d46a0fb61b32b3fc591b1ae16cd4 (patch)
treeb936da2fd68e6d3d21b30447a283ab3c6b98fedc /ssa.c
parent696f1e9fb8f3c4004f22d8adaddec5d709c90e7b (diff)
...
Diffstat (limited to 'ssa.c')
-rw-r--r--ssa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssa.c b/ssa.c
index 6325315..ab77be8 100644
--- a/ssa.c
+++ b/ssa.c
@@ -152,7 +152,7 @@ void cfg_add_edge(CBlock_t from, CBlock_t to) {
}
void dtree_add_edge(CBlock_t from, CBlock_t to) {
-/* printf("%d d-> %d\n", from->id, to->id); */
+ fprintf(stderr, "%d d-> %d\n", from->id, to->id);
int id = from->id;
CEdge *e = NEW(CEdge);
e->to = to;