fixed doxygen comments, removed initialization for description entities
[libfirm] / ir / ana / irdom.h
index 73db60b..12af237 100644 (file)
 # include "irnode.h"
 
 
-/* Accessing the dominator datastructure.
+/** Accessing the dominator datastructure.
  *
  * These routines only work properly if the ir_graph is in state
  * dom_consistent or dom_inconsistent.
+ *
+ * If the block is not reachable from Start, returns a Bad node.
  */
 ir_node *get_Block_idom(ir_node *bl);
 void set_Block_idom(ir_node *bl, ir_node *n);
@@ -65,7 +67,7 @@ void set_Block_pre_num(ir_node *bl, int num);
  */
 void compute_doms(ir_graph *irg);
 
-/** Frees the dominator datastructures.  Sets the flag in irg to "no_dom". */
+/** Frees the dominator datastructures.  Sets the flag in irg to "dom_none". */
 void free_dom_and_peace(ir_graph *irg);
 
 #endif /* _IRDOM_H_ */