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
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