diff dmd/mtype.c @ 121:9c79b61fb638 trunk

[svn r125] Renamed/moved a few backend member inside DMD structures for consistency. Unit tests are now implemented.
author lindquist
date Tue, 27 Nov 2007 03:09:36 +0100
parents 5880c12dba83
children facc562f5674
line wrap: on
line diff
--- a/dmd/mtype.c	Mon Nov 26 07:26:21 2007 +0100
+++ b/dmd/mtype.c	Tue Nov 27 03:09:36 2007 +0100
@@ -2560,8 +2560,6 @@
     this->inuse = 0;
     this->llvmRetInPtr = false;
     this->llvmUsesThis = false;
-    this->llvmRetArg = 0;
-    this->llvmAllocaPoint = 0;
 }
 
 Type *TypeFunction::syntaxCopy()
@@ -4094,7 +4092,6 @@
 	: Type(Tstruct, NULL)
 {
     this->sym = sym;
-    llvmInit = 0;
 }
 
 char *TypeStruct::toChars()
@@ -4383,7 +4380,6 @@
 	: Type(Tclass, NULL)
 {
     this->sym = sym;
-    llvmInit = 0;
     llvmVtblType = 0;
 }