X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbedomfront.h;h=88e1a42d8a506a3c6b0199fca5753f52be95035b;hb=2232b14b4acf810ae96a69d1d2a33cf150b695d9;hp=b012c960d73493482a57777d432b5fd6ca18e8d7;hpb=d6768d8d4427959eb045aafb1d15bd189beaa5dd;p=libfirm diff --git a/ir/be/bedomfront.h b/ir/be/bedomfront.h index b012c960d..88e1a42d8 100644 --- a/ir/be/bedomfront.h +++ b/ir/be/bedomfront.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -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$ @@ -27,13 +27,8 @@ #ifndef FIRM_BE_BEDOMFRONT_H #define FIRM_BE_BEDOMFRONT_H -#include "irnode.h" -#include "irgraph.h" - -/* - * Forward type declaration. - */ -typedef struct _be_dom_front_info_t be_dom_front_info_t; +#include "firm_types.h" +#include "be_types.h" /** * Compute the dominance frontiers for a given graph. @@ -50,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