comparison gen/typinf.cpp @ 1283:450897f5aae9

Remove some dead code.
author Frits van Bommel <fvbommel wxs.nl>
date Sat, 02 May 2009 11:58:50 +0200
parents 465a77c904d4
children 5851c18e4c6d
comparison
equal deleted inserted replaced
1282:680b4df0ea36 1283:450897f5aae9
325 { 325 {
326 if (tid->ir.initialized) return; 326 if (tid->ir.initialized) return;
327 tid->ir.initialized = true; 327 tid->ir.initialized = true;
328 328
329 Logger::println("DtoConstInitTypeInfo(%s)", tid->toChars()); 329 Logger::println("DtoConstInitTypeInfo(%s)", tid->toChars());
330 LOG_SCOPE;
331
332 tid->llvmDefine();
333 }
334
335 void DtoDefineTypeInfo(TypeInfoDeclaration* tid)
336 {
337 if (tid->ir.defined) return;
338 tid->ir.defined = true;
339
340 Logger::println("DtoDefineTypeInfo(%s)", tid->toChars());
341 LOG_SCOPE; 330 LOG_SCOPE;
342 331
343 tid->llvmDefine(); 332 tid->llvmDefine();
344 } 333 }
345 334