From 27bcd5a3c66abab40293a52794f22ce644fe9c7e Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Tue, 27 Oct 2015 14:21:50 -0400 Subject: fillphi() now comes before filllive() --- lisc/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisc') diff --git a/lisc/main.c b/lisc/main.c index 68196d9..3c6a009 100644 --- 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); -- cgit 1.4.1