X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fst%2Fst.c;h=335fb8db03f4012aa8393a37d0eb2cb51e7ad948;hb=5679b7b33dbf50a18c5ec8e2803fd269ac953671;hp=259a8de8046a2d0c6b9039571685100f0779199f;hpb=df83e37827032795585d3b25776c465870672901;p=libfirm diff --git a/ir/st/st.c b/ir/st/st.c index 259a8de80..335fb8db0 100644 --- a/ir/st/st.c +++ b/ir/st/st.c @@ -48,7 +48,7 @@ static void count_block (ir_node *block, void *env) # endif /* def DEBUG_libfirm */ fprintf (stdout, "%s: Block(%p) has # (%i)\n", - __FILE__ ":" __PRETTY_FUNCTION__, block, *n); + __FILE__ ":count_block", block, *n); (*n) ++; } @@ -70,7 +70,7 @@ static int get_n_blocks (ir_graph *graph) irg_block_walk (end_block, count_block, NULL, &n); fprintf (stdout, "%s: Graph(%p) has (%i) blocks\n", - __FILE__ ":" __PRETTY_FUNCTION__, graph, n); + __FILE__ ":get_n_blocks", graph, n); return (n); }