comparison dmd/declaration.h @ 11:d3ee9efe20e2 trunk

[svn r15] * Fixed a bunch problems with virtual calls. Seems I did some rather poor testing. * Now 50/51 tests compile. * Added a simple runalltests.d scripts that should be run with 'gdmd -run runalltests.d' - LLVMDC will not compile it yet.
author lindquist
date Tue, 02 Oct 2007 05:10:18 +0200
parents dafae18f9c08
children 37a4fdab33fc
comparison
equal deleted inserted replaced
10:c0f2c47e5034 11:d3ee9efe20e2
507 Symbol *toThunkSymbol(int offset); // thunk version 507 Symbol *toThunkSymbol(int offset); // thunk version
508 void toObjFile(); // compile to .obj file 508 void toObjFile(); // compile to .obj file
509 int cvMember(unsigned char *p); 509 int cvMember(unsigned char *p);
510 510
511 FuncDeclaration *isFuncDeclaration() { return this; } 511 FuncDeclaration *isFuncDeclaration() { return this; }
512
513 bool llvmQueued;
512 }; 514 };
513 515
514 struct FuncAliasDeclaration : FuncDeclaration 516 struct FuncAliasDeclaration : FuncDeclaration
515 { 517 {
516 FuncDeclaration *funcalias; 518 FuncDeclaration *funcalias;