use dump_ir_block_graph_sched() for assert graph's
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 23 Nov 2007 17:09:26 +0000 (17:09 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Fri, 23 Nov 2007 17:09:26 +0000 (17:09 +0000)
[r16834]

ir/ir/irvrfy_t.h

index fd1ab70..c9ff7c1 100644 (file)
@@ -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); \