move usage computation in filluse()

This commit is contained in:
Quentin Carbonneaux 2015-11-11 21:21:54 -05:00
parent d3f1cd9483
commit a3a1fc0c80
4 changed files with 54 additions and 14 deletions

View file

@ -49,8 +49,9 @@ func(Fn *fn)
}
fillrpo(fn);
fillpreds(fn);
filluse(fn);
ssa(fn);
#if 0
filluse(fn);
isel(fn);
filllive(fn);
fillcost(fn);
@ -69,7 +70,6 @@ func(Fn *fn)
printf("/* end function %s */\n\n", fn->name);
} else
fprintf(stderr, "\n");
#endif
freeall();
}