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