xref: /illumos-gate/usr/src/tools/smatch/src/cse.h (revision 915894ef19890baaed00080f85f6b69e225cda98)
1 #ifndef CSE_H
2 #define CSE_H
3 
4 struct instruction;
5 struct entrypoint;
6 
7 /* cse.c */
8 void cse_collect(struct instruction *insn);
9 void cse_eliminate(struct entrypoint *ep);
10 
11 #endif
12