xref: /illumos-gate/usr/src/tools/smatch/src/dominate.h (revision c85f09cc92abd00c84e58ec9f0f5d942906cb713)
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