Browse Source

use the new load optimization

Quentin Carbonneaux 9 năm trước cách đây
mục cha
commit
96f0711dac
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      main.c

+ 5 - 1
main.c

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