Browse Source

use the new load optimization

Quentin Carbonneaux 9 years ago
parent
commit
96f0711dac
1 changed files with 5 additions and 1 deletions
  1. 5 1
      main.c

+ 5 - 1
main.c

@@ -45,10 +45,14 @@ func(Fn *fn)
 	fillrpo(fn);
 	fillpreds(fn);
 	filluse(fn);
-	memopt(fn);
+	/* memopt(fn); */
 	ssa(fn);
 	filluse(fn);
 	ssacheck(fn);
+	fillalias(fn);
+	loadopt(fn);
+	filluse(fn);
+	ssacheck(fn);
 	copy(fn);
 	filluse(fn);
 	fold(fn);