comparison gen/toir.cpp @ 763:9a9f403ab399

D2 changes! Removed druntime from the repository again.. Sorry :/ Updated the druntime port a bit, now requires druntime from trunk. Added info in runtime/README on how to get druntime from trunk. Added patch to add LDC support to druntime. Removed some debug logging from D2 builds. Fixed broken typeinfo for const/invariant in D2.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 12 Nov 2008 07:22:05 +0100
parents f04dde6e882c
children 50eae902f77e
comparison
equal deleted inserted replaced
762:d7aae6f09754 763:9a9f403ab399
56 LOG_SCOPE; 56 LOG_SCOPE;
57 57
58 assert(var); 58 assert(var);
59 if (VarDeclaration* vd = var->isVarDeclaration()) 59 if (VarDeclaration* vd = var->isVarDeclaration())
60 { 60 {
61 Logger::println("VarDeclaration %s", vd->toChars()); 61 Logger::println("VarDeclaration ' %s ' of type ' %s '", vd->toChars(), vd->type->toChars());
62 62
63 // _arguments 63 // _arguments
64 if (vd->ident == Id::_arguments && p->func()->_arguments) 64 if (vd->ident == Id::_arguments && p->func()->_arguments)
65 { 65 {
66 Logger::println("Id::_arguments"); 66 Logger::println("Id::_arguments");