diff tango/lib/compiler/llvmdc/lifetime.d @ 212:4c2689d57ba4 trunk

[svn r228] Fixed: when new'ing basic types, the storage was not default initialized. Fixed: the tango/lib/compiler/llvmdc/llvmdc.mak makefile was a bit incorrect. Changed: the basic gc is now the default. Changed: renamed a few temporary names in the LLVM IR output.
author lindquist
date Tue, 27 May 2008 22:14:24 +0200
parents f66219e0d530
children a168a2c3ea48
line wrap: on
line diff
--- a/tango/lib/compiler/llvmdc/lifetime.d	Tue May 27 19:53:29 2008 +0200
+++ b/tango/lib/compiler/llvmdc/lifetime.d	Tue May 27 22:14:24 2008 +0200
@@ -206,7 +206,7 @@
     void* p;
     auto size = ti.next.tsize();                // array element size
 
-    debug(PRINTF) printf("_d_newarrayT(length = x%x, size = %d)\n", length, size);
+    debug(PRINTF) printf("_d_newarrayT(length = %u, size = %d)\n", length, size);
     if (length == 0 || size == 0)
         return null;