X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Firdom_t.h;h=24a10a6ee4d00091d24c8ab9a964f8b5f0ce756b;hb=f274dcf35aa0d3f4748387dbddfe50e8d7d44951;hp=9137bc43c0a1d09ae80490ae4a7dc8472413569e;hpb=64d38975c523c9cfe4a3890af23e9192f557e293;p=libfirm diff --git a/ir/ana/irdom_t.h b/ir/ana/irdom_t.h index 9137bc43c..24a10a6ee 100644 --- a/ir/ana/irdom_t.h +++ b/ir/ana/irdom_t.h @@ -19,8 +19,6 @@ * @author Goetz Lindenmaier * */ - - # ifndef _IRDOM_T_H_ # define _IRDOM_T_H_ @@ -28,17 +26,16 @@ /** For dominator information */ typedef struct dom_info { - struct ir_node *idom; /**< immediate CFG dominator */ - struct ir_node *next; /**< The next node in the dominated - list of @c idom. */ - struct ir_node *first; /**< The first node in the list of nodes - this nodes dominates immediately. */ - int tree_pre_num; /**< The pre-order number from a dfs walk - over the dominator tree. */ - int max_subtree_pre_num; /**< The largest tree pre num found in the - dominator subtree of this node. */ - int pre_num; /**< pre-order graph-walk number */ - int dom_depth; /**< depth in dominator-tree */ + ir_node *idom; /**< immediate CFG dominator */ + ir_node *next; /**< The next node in the dominated list of @c idom. */ + ir_node *first; /**< The first node in the list of nodes + this nodes dominates immediately. */ + unsigned tree_pre_num; /**< The pre-order number from a dfs walk + over the dominator tree. */ + unsigned max_subtree_pre_num; /**< The largest tree pre num found in the + dominator subtree of this node. */ + int pre_num; /**< pre-order graph-walk number */ + int dom_depth; /**< depth in dominator-tree */ } dom_info; #endif /* _IRDOM_T_H_ */