converted comments to doxygen
[libfirm] / ir / ana / irdom_t.h
1 /* Copyright (C) 2002 by Universitaet Karlsruhe
2 * All rights reserved.
3 *
4 * Authors: Goetz Lindenmaier
5 *
6 * irdom_t.h:  private datastructures
7 */
8
9 /* $Id$ */
10
11 # ifndef _IRDOM_T_H_
12 # define _IRDOM_T_H_
13
14 #include "irdom.h"
15
16 /** For dominator information */
17 typedef struct dom_info {
18   struct ir_node *idom; /**< immediate CFG dominator */
19   int pre_num;                /**< pre-order graph-walk number */
20   int dom_depth;              /**< depth in dominator-tree */
21 } dom_info;
22
23 #endif /* _IRDOM_T_H_ */