Add newline in debug print
authorsimonpj@microsoft.com <unknown>
Fri, 26 Oct 2007 15:02:24 +0000 (15:02 +0000)
committersimonpj@microsoft.com <unknown>
Fri, 26 Oct 2007 15:02:24 +0000 (15:02 +0000)
compiler/simplCore/SimplCore.lhs

index 64c4c92..86b4c66 100644 (file)
@@ -429,7 +429,7 @@ simplifyPgm mode switches hsc_env us imp_rule_base guts
            if  max_iterations > 2 then
                hPutStr stderr ("NOTE: Simplifier still going after " ++ 
                                show max_iterations ++ 
-                               " iterations; bailing out.  Size = " ++ show (coreBindsSize binds) )
+                               " iterations; bailing out.  Size = " ++ show (coreBindsSize binds) ++ "\n" )
            else 
                return ();
 #endif