From: Michael Beck Date: Fri, 23 Nov 2007 17:09:26 +0000 (+0000) Subject: use dump_ir_block_graph_sched() for assert graph's X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c1212ac51039d2f4c39bb8939a036f2f18c72e7c;p=libfirm use dump_ir_block_graph_sched() for assert graph's [r16834] --- diff --git a/ir/ir/irvrfy_t.h b/ir/ir/irvrfy_t.h index fd1ab70f4..c9ff7c15b 100644 --- a/ir/ir/irvrfy_t.h +++ b/ir/ir/irvrfy_t.h @@ -49,7 +49,7 @@ extern const char *firm_vrfy_failure_msg; do { \ if (opt_do_node_verification == FIRM_VERIFICATION_ON) {\ if (!(expr) && current_ir_graph != get_const_code_irg()) \ - dump_ir_block_graph(current_ir_graph, "-assert"); \ + dump_ir_block_graph_sched(current_ir_graph, "-assert"); \ assert((expr) && string); } \ if (!(expr)) { \ if (opt_do_node_verification == FIRM_VERIFICATION_REPORT) \ @@ -68,7 +68,7 @@ do { \ fprintf(stderr, #expr " : " string "\n"); \ else if (opt_do_node_verification == FIRM_VERIFICATION_ON) { \ if (!(expr) && current_ir_graph != get_const_code_irg()) \ - dump_ir_block_graph(current_ir_graph, "-assert"); \ + dump_ir_block_graph_sched(current_ir_graph, "-assert"); \ assert((expr) && string); \ } \ return (ret); \