xref: /illumos-gate/usr/src/tools/smatch/src/liveness.h (revision c85f09cc)
1*c85f09ccSJohn Levon #ifndef LIVENESS_H
2*c85f09ccSJohn Levon #define LIVENESS_H
3*c85f09ccSJohn Levon 
4*c85f09ccSJohn Levon struct entrypoint;
5*c85f09ccSJohn Levon 
6*c85f09ccSJohn Levon /* liveness.c */
7*c85f09ccSJohn Levon void clear_liveness(struct entrypoint *ep);
8*c85f09ccSJohn Levon void track_pseudo_liveness(struct entrypoint *ep);
9*c85f09ccSJohn Levon void track_pseudo_death(struct entrypoint *ep);
10*c85f09ccSJohn Levon 
11*c85f09ccSJohn Levon #endif
12