[svn r125] Renamed/moved a few backend member inside DMD structures for consistency.

Unit tests are now implemented.
This commit is contained in:
Tomas Lindquist Olsen
2007-11-27 03:09:36 +01:00
parent 935dfae9c8
commit ea362d8402
17 changed files with 144 additions and 111 deletions

View File

@@ -2560,8 +2560,6 @@ TypeFunction::TypeFunction(Arguments *parameters, Type *treturn, int varargs, en
this->inuse = 0;
this->llvmRetInPtr = false;
this->llvmUsesThis = false;
this->llvmRetArg = 0;
this->llvmAllocaPoint = 0;
}
Type *TypeFunction::syntaxCopy()
@@ -4094,7 +4092,6 @@ TypeStruct::TypeStruct(StructDeclaration *sym)
: Type(Tstruct, NULL)
{
this->sym = sym;
llvmInit = 0;
}
char *TypeStruct::toChars()
@@ -4383,7 +4380,6 @@ TypeClass::TypeClass(ClassDeclaration *sym)
: Type(Tclass, NULL)
{
this->sym = sym;
llvmInit = 0;
llvmVtblType = 0;
}