xref: /illumos-gate/usr/src/tools/smatch/src/dominate.h (revision c85f09cc)
1 #ifndef DOMINATE_H
2 #define DOMINATE_H
3 
4 struct entrypoint;
5 struct basic_block_list;
6 
7 void idf_compute(struct entrypoint *ep, struct basic_block_list **idf, struct basic_block_list *alpha);
8 
9 
10 // For debugging only
11 void idf_dump(struct entrypoint *ep);
12 
13 #endif
14