[add comments about simple recursion transformation
John Meacham <john@repetae.net>**20060718060854] hunk ./Main.hs 304
-        --progress "eta annotating"
+
+        -- This transforms simple recursive routines into non-recursive ones that contain a local
+        -- recursive definition. this makes them easier to inline and optimize.
+        -- TODO - static argument transformation at same time?
+
hunk ./Main.hs 310
-                (True,[(t,v@ELam {})]) | tvrIdent t `member` (freeVars v :: IdSet) -> do
+                (True,[(t,v@ELam {})]) -> do
hunk ./Main.hs 319
+