param_key: fix container of when no struct member is referenced
[smatch.git] / cse.h
blob29c97ea9d27a50f26dae2f0a7951887b697af799
1 #ifndef CSE_H
2 #define CSE_H
4 struct instruction;
5 struct entrypoint;
7 /* cse.c */
8 void cse_collect(struct instruction *insn);
9 void cse_eliminate(struct entrypoint *ep);
11 #endif