equivalent_node() functions fixed, return was wrong
[libfirm] / ir / ir / irvrfy.h
index b055db7..a48abae 100644 (file)
@@ -3,7 +3,7 @@
 */
 
 /**
-* @file irgraph.h
+* @file irvrfy.h
 *
 * ir graph verification.
 *
 # include "irgraph.h"
 
 /** Tests the modes of chechnode and its predecessors.
-   Checknode must be in current_ir_graph. */
+    Checknode must be in current_ir_graph. */
 void irn_vrfy (struct ir_node *checknode);
 
+/** Tests the modes of chechnode and its predecessors.
+    Checknode must be in given ir_graph. */
+void irn_vrfy_irg (struct ir_node *checknode, ir_graph *irg);
+
+
 /** Calls irn_vrfy for each node in irg.
-   Graph must be in state "pinned".*/
+    Graph must be in state "pinned".*/
 void irg_vrfy (ir_graph *irg);