blob: 29c97ea9d27a50f26dae2f0a7951887b697af799 [file] [log] [blame]
#ifndef CSE_H
#define CSE_H
struct instruction;
struct entrypoint;
/* cse.c */
void cse_collect(struct instruction *insn);
void cse_eliminate(struct entrypoint *ep);
#endif