use the new load optimization
This commit is contained in:
parent
8d8d551df2
commit
96f0711dac
1 changed files with 5 additions and 1 deletions
6
main.c
6
main.c
|
@ -45,10 +45,14 @@ func(Fn *fn)
|
|||
fillrpo(fn);
|
||||
fillpreds(fn);
|
||||
filluse(fn);
|
||||
memopt(fn);
|
||||
/* memopt(fn); */
|
||||
ssa(fn);
|
||||
filluse(fn);
|
||||
ssacheck(fn);
|
||||
fillalias(fn);
|
||||
loadopt(fn);
|
||||
filluse(fn);
|
||||
ssacheck(fn);
|
||||
copy(fn);
|
||||
filluse(fn);
|
||||
fold(fn);
|
||||
|
|
Loading…
Add table
Reference in a new issue