X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Firdom.h;h=8626d7be916e44db39c11d366cca946f01befac6;hb=6cd6e689bec4c3090cf54956ff8b8d4e340085ef;hp=35261d8f9c7d23ae00853b6812314ebdbd41b3d5;hpb=0ed495da32589b78283d9ede3cb9e33727316006;p=libfirm diff --git a/include/libfirm/irdom.h b/include/libfirm/irdom.h index 35261d8f9..8626d7be9 100644 --- a/include/libfirm/irdom.h +++ b/include/libfirm/irdom.h @@ -30,8 +30,6 @@ #include "firm_types.h" #include "begin.h" -/** @defgroup irana Analyses */ - /** * @ingroup irana * @defgroup irdom Dominance Information @@ -96,32 +94,32 @@ FIRM_API int block_postdominates(const ir_node *a, const ir_node *b); FIRM_API int block_strictly_postdominates(const ir_node *a, const ir_node *b); /** - * Get the first node in the list of nodes dominated by a given block. + * Returns the first node in the list of nodes dominated by a given block. * * Each node keeps a list of nodes which it immediately dominates. The * nodes are queued using the @c next pointer in the @c dom_info struct. * Each node keeps a head of this list using the pointer @c first in the * same structure. * - * @param bl The block for which to get the first node dominated by @c bl. + * @param block The block for which to get the first node dominated by @c bl. * @return The first node dominated by @p bl. */ FIRM_API ir_node *get_Block_dominated_first(const ir_node *block); /** - * Get the first node in the list of nodes postdominated by a given blcok. + * Returns the first node in the list of nodes postdominated by a given blcok. */ FIRM_API ir_node *get_Block_postdominated_first(const ir_node *bl); /** - * Get the next node in a list of nodes which are dominated by some + * Returns the next node in a list of nodes which are dominated by some * other node. * @see get_Block_dominated_first(). - * @param dom The previous node. + * @param node The previous node. * @return The next node in this list or NULL if it was the last. */ FIRM_API ir_node *get_Block_dominated_next(const ir_node *node); /** - * Get the next node in a list of nodes which are postdominated by another node + * Returns the next node in a list of nodes which are postdominated by another node */ FIRM_API ir_node *get_Block_postdominated_next(const ir_node *node);