mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
use the new load optimization
This commit is contained in:
parent
8d8d551df2
commit
96f0711dac
6
main.c
6
main.c
@ -45,10 +45,14 @@ func(Fn *fn)
|
|||||||
fillrpo(fn);
|
fillrpo(fn);
|
||||||
fillpreds(fn);
|
fillpreds(fn);
|
||||||
filluse(fn);
|
filluse(fn);
|
||||||
memopt(fn);
|
/* memopt(fn); */
|
||||||
ssa(fn);
|
ssa(fn);
|
||||||
filluse(fn);
|
filluse(fn);
|
||||||
ssacheck(fn);
|
ssacheck(fn);
|
||||||
|
fillalias(fn);
|
||||||
|
loadopt(fn);
|
||||||
|
filluse(fn);
|
||||||
|
ssacheck(fn);
|
||||||
copy(fn);
|
copy(fn);
|
||||||
filluse(fn);
|
filluse(fn);
|
||||||
fold(fn);
|
fold(fn);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user