diff gen/statements.cpp @ 98:6789050b5ad1 trunk

[svn r102] Further delayed emission of function bodies to avoid problems with circular-forward-references. Now uses the DMD _adEq(void[], void[], TypeInfo) runtime function for array equality comparison.
author lindquist
date Wed, 14 Nov 2007 23:39:10 +0100
parents ce7ed8f59b99
children 5071469303d4
line wrap: on
line diff
--- a/gen/statements.cpp	Wed Nov 14 20:18:01 2007 +0100
+++ b/gen/statements.cpp	Wed Nov 14 23:39:10 2007 +0100
@@ -26,8 +26,7 @@
 
 void CompoundStatement::toIR(IRState* p)
 {
-    static int csi = 0;
-    Logger::println("CompoundStatement::toIR(%d):\n<<<\n%s>>>", csi++, toChars());
+    Logger::println("CompoundStatement::toIR()");
     LOG_SCOPE;
 
     for (int i=0; i<statements->dim; i++)