enable constant folding

This commit is contained in:
Quentin Carbonneaux 2016-04-09 14:32:07 -04:00
parent d8770d112b
commit abe45f1ab0
3 changed files with 7 additions and 1 deletions

3
all.h
View file

@ -533,6 +533,9 @@ void ssa(Fn *);
/* copy.c */
void copy(Fn *);
/* fold.c */
void fold(Fn *);
/* live.c */
void liveon(BSet *, Blk *, Blk *);
void filllive(Fn *);