qbe

Internal scc patchset buffer for QBE
Log | Files | Refs | README | LICENSE

commit 27bcd5a3c66abab40293a52794f22ce644fe9c7e
parent d43ebe8f58983da12ba9c0e53c633029335b8619
Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu>
Date:   Tue, 27 Oct 2015 14:21:50 -0400

fillphi() now comes before filllive()

Diffstat:
Mlisc/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisc/main.c b/lisc/main.c @@ -50,9 +50,9 @@ func(Fn *fn) isel(fn); fillrpo(fn); fillpreds(fn); + fillphi(fn); filllive(fn); fillcost(fn); - fillphi(fn); spill(fn); rega(fn); fillrpo(fn);