- remove all irg parameter from node constructors having a block
[libfirm] / ir / ir / irvrfy_t.h
index fd1ab70..e4675c4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -30,6 +30,8 @@
 #include "irvrfy.h"
 #include "irdump.h"
 
+#include "beutil.h"
+
 extern const char *firm_vrfy_failure_msg;
 
 #ifdef NDEBUG
@@ -49,7 +51,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 +70,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); \