diff src/especialize.sml @ 520:3f20c22098af

Untangle and shake within Especialize loop
author Adam Chlipala <adamc@hcoop.net>
date Thu, 27 Nov 2008 12:04:54 -0500
parents 5521bb0b4014
children 31aba58a5b5b
line wrap: on
line diff
--- a/src/especialize.sml	Thu Nov 27 11:40:13 2008 -0500
+++ b/src/especialize.sml	Thu Nov 27 12:04:54 2008 -0500
@@ -349,15 +349,22 @@
 fun specialize file =
     let
         (*val () = Print.prefaces "Intermediate" [("file", CorePrint.p_file CoreEnv.empty file)];*)
-        val file = ReduceLocal.reduce file
+        (*val file = ReduceLocal.reduce file*)
         val (changed, file) = specialize' file
-        val file = ReduceLocal.reduce file
-        (*val file = CoreUntangle.untangle file
+        (*val file = ReduceLocal.reduce file
+        val file = CoreUntangle.untangle file
         val file = Shake.shake file*)
     in
         (*print "Round over\n";*)
         if changed then
-            specialize file
+            let
+                val file = ReduceLocal.reduce file
+                val file = CoreUntangle.untangle file
+                val file = Shake.shake file
+            in
+                (*print "Again!\n";*)
+                specialize file
+            end
         else
             file
     end