comparison dmd/dsymbol.c @ 443:44f08170f4ef

Removed tango from the repository and instead added a runtime dir with the files needed to patch and build tango from svn. Reworked the LLVMDC specific pragmas.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Fri, 01 Aug 2008 00:32:06 +0200
parents f1d37dc5d354
children e83ba4ae4878
comparison
equal deleted inserted replaced
442:76078c8ab5b9 443:44f08170f4ef
43 this->isym = NULL; 43 this->isym = NULL;
44 this->loc = 0; 44 this->loc = 0;
45 this->comment = NULL; 45 this->comment = NULL;
46 46
47 this->llvmInternal = LLVMnone; 47 this->llvmInternal = LLVMnone;
48 this->llvmInternal1 = NULL;
49 this->llvmInternal2 = NULL;
50 } 48 }
51 49
52 Dsymbol::Dsymbol(Identifier *ident) 50 Dsymbol::Dsymbol(Identifier *ident)
53 { 51 {
54 //printf("Dsymbol::Dsymbol(%p, ident)\n", this); 52 //printf("Dsymbol::Dsymbol(%p, ident)\n", this);
59 this->isym = NULL; 57 this->isym = NULL;
60 this->loc = 0; 58 this->loc = 0;
61 this->comment = NULL; 59 this->comment = NULL;
62 60
63 this->llvmInternal = LLVMnone; 61 this->llvmInternal = LLVMnone;
64 this->llvmInternal1 = NULL;
65 this->llvmInternal2 = NULL;
66 } 62 }
67 63
68 int Dsymbol::equals(Object *o) 64 int Dsymbol::equals(Object *o)
69 { Dsymbol *s; 65 { Dsymbol *s;
70 66