Initial revision
[libfirm] / ir / ir / irvrfy.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2 ** All rights reserved.
3 **
4 ** Author: Christian Schaefer
5 **
6 ** irgraph.h: ir graph verification
7 */
8
9 # ifndef _IRVRFY_H_
10 # define _IRVRFY_H_
11
12 # include "irnode.h"
13 # include "irgraph.h"
14
15 /* Tests the types of predecessors of checknode. */
16 void ir_vrfy (struct ir_node *checknode);
17
18 /* Calls ir_vrfy for each node in irg. */
19 void vrfy_graph (ir_graph *irg);
20
21
22 # endif /* _IRVRFY_H_ */