comparison: fix how addresses are handled
[smatch.git] / flowgraph.h
blob7226c55f080523577092b2ef79f05abca0365dc0
1 #ifndef FLOWGRAPH_H
2 #define FLOWGRAPH_H
4 #include <stdbool.h>
6 struct entrypoint;
7 struct basic_block;
9 int cfg_postorder(struct entrypoint *ep);
10 void domtree_build(struct entrypoint *ep);
11 bool domtree_dominates(struct basic_block *a, struct basic_block *b);
13 #endif