diff options
author | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-21 09:56:40 -0500 |
---|---|---|
committer | Quentin Carbonneaux <quentin.carbonneaux@yale.edu> | 2016-12-21 09:56:40 -0500 |
commit | 3c3afdc896be4de996d7486e40e7b81488b745b9 (patch) | |
tree | ee630a1d0754103dd726fc06cd50ea2cb2134e9b /main.c | |
parent | d04ba5eae886ce4e5407ccd711fb1c9846dcf1f7 (diff) | |
download | roux-3c3afdc896be4de996d7486e40e7b81488b745b9.tar.gz |
schedule loop nesting computations earlier
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main.c b/main.c index 6642ac2..f8d367f 100644 --- a/main.c +++ b/main.c @@ -49,6 +49,7 @@ func(Fn *fn) ssa(fn); filluse(fn); ssacheck(fn); + fillloop(fn); fillalias(fn); loadopt(fn); filluse(fn); |