Go to the documentation of this file.
27 #ifndef FIRM_ANA_IRDOM_H
28 #define FIRM_ANA_IRDOM_H
132 #define dominates_for_each(bl,curr) \
133 for(curr = get_Block_dominated_first(bl); curr; \
134 curr = get_Block_dominated_next(curr))
142 #define postdominates_for_each(bl,curr) \
143 for(curr = get_Block_postdominated_first(bl); curr; \
144 curr = get_Block_postdominated_next(curr))