rename be_pos_XXX to n_be_XXX to be consistent with the architecture specific constants
[libfirm] / ir / be / bedomfront.h
index 5bd9ea1..88e1a42 100644 (file)
@@ -19,7 +19,7 @@
 
 /**
  * @file
- * @brief       Algorithms for computing normal and iterated dominance frontiers
+ * @brief       Algorithms for computing dominance frontiers
  * @author      Sebastian Hack, Daniel Grund
  * @date:       04.05.2005
  * @version     $Id$
 #define FIRM_BE_BEDOMFRONT_H
 
 #include "firm_types.h"
-
-/*
- * Forward type declaration.
- */
-typedef struct _be_dom_front_info_t be_dom_front_info_t;
+#include "be_types.h"
 
 /**
  * Compute the dominance frontiers for a given graph.
@@ -49,10 +45,11 @@ void be_free_dominance_frontiers(be_dom_front_info_t *info);
 
 /**
  * Get the dominance frontier of a block.
- * @param info         A pointer to the dominance frontier information.
- * @param block The block whose dominance frontier you want.
- * @return A list containing the all blocks in the dominance frontier of @p block.
+ * @param info    A pointer to the dominance frontier information.
+ * @param block   The block whose dominance frontier you want.
+ * @return        A list containing the all blocks in the dominance frontier of
+ *                @p block.
  */
 ir_node **be_get_dominance_frontier(const be_dom_front_info_t *info, ir_node *block);
 
-#endif /* FIRM_BE_BEDOMFRONT_H */
+#endif