Remove some dead code.

This commit is contained in:
Frits van Bommel
2009-05-02 11:58:50 +02:00
parent 9812a8c8ae
commit 6c91185a77
2 changed files with 0 additions and 12 deletions

View File

@@ -4,6 +4,5 @@
void DtoResolveTypeInfo(TypeInfoDeclaration* tid);
void DtoDeclareTypeInfo(TypeInfoDeclaration* tid);
void DtoConstInitTypeInfo(TypeInfoDeclaration* tid);
void DtoDefineTypeInfo(TypeInfoDeclaration* tid);
#endif

View File

@@ -332,17 +332,6 @@ void DtoConstInitTypeInfo(TypeInfoDeclaration* tid)
tid->llvmDefine();
}
void DtoDefineTypeInfo(TypeInfoDeclaration* tid)
{
if (tid->ir.defined) return;
tid->ir.defined = true;
Logger::println("DtoDefineTypeInfo(%s)", tid->toChars());
LOG_SCOPE;
tid->llvmDefine();
}
/* ========================================================================= */
void TypeInfoDeclaration::llvmDefine()