move usage computation in filluse()
This commit is contained in:
parent
d3f1cd9483
commit
a3a1fc0c80
4 changed files with 54 additions and 14 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue