Converted documentation to doxygen.
[libfirm] / ir / ir / irvrfy.h
index 2335d0c..a48abae 100644 (file)
@@ -1,9 +1,13 @@
 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
 * All rights reserved.
+*/
+
+/**
+* @file irvrfy.h
 *
-* Author: Christian Schaefer
+* ir graph verification.
 *
-* irgraph.h: ir graph verification
+* @author Christian Schaefer
 */
 
 /* $Id$ */
 # include "irnode.h"
 # include "irgraph.h"
 
-/* Tests the modes of chechnode and its predecessors.
-   Checknode must be in current_ir_graph. */
+/** Tests the modes of chechnode and its predecessors.
+    Checknode must be in current_ir_graph. */
 void irn_vrfy (struct ir_node *checknode);
 
-/* Calls irn_vrfy for each node in irg.
-   Graph must be in state "pinned".*/
+/** 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".*/
 void irg_vrfy (ir_graph *irg);