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