dominate.h 258 B

1234567891011121314
  1. #ifndef DOMINATE_H
  2. #define DOMINATE_H
  3. struct entrypoint;
  4. struct basic_block_list;
  5. void idf_compute(struct entrypoint *ep, struct basic_block_list **idf, struct basic_block_list *alpha);
  6. // For debugging only
  7. void idf_dump(struct entrypoint *ep);
  8. #endif