fixed config.h include
[libfirm] / ir / ana / irdom_t.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ana/irdom_t.h
4  * Purpose:     Construct and access dominator tree -- private datastructures.
5  * Author:      Goetz Lindenmaier
6  * Modified by:
7  * Created:     2.2002
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 2002-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13
14 /**
15  * @file irdom_t.h
16  *
17  * Dominator information private datastructures.
18  *
19  * @author Goetz Lindenmaier
20  *
21  */
22
23
24 # ifndef _IRDOM_T_H_
25 # define _IRDOM_T_H_
26
27 #include "irdom.h"
28
29 /** For dominator information */
30 typedef struct dom_info {
31   struct ir_node *idom; /**< immediate CFG dominator */
32   int pre_num;                /**< pre-order graph-walk number */
33   int dom_depth;              /**< depth in dominator-tree */
34 } dom_info;
35
36 #endif /* _IRDOM_T_H_ */