fix stupid bug with sizes of compiler classes

This commit is contained in:
Eldar Insafutdinov
2010-10-31 23:17:56 +00:00
parent dc50773333
commit 6e8d25ee0d
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ Type *Type::tvoidptr;
Type *Type::tstring;
Type *Type::basic[TMAX];
unsigned char Type::mangleChar[TMAX];
unsigned char Type::sizeTy[TMAX];
unsigned short Type::sizeTy[TMAX];
StringTable Type::stringtable;
#if IN_LLVM

View File

@@ -216,7 +216,7 @@ struct Type : Object
static Type *basic[TMAX];
static unsigned char mangleChar[TMAX];
static unsigned char sizeTy[TMAX];
static unsigned short sizeTy[TMAX];
static StringTable stringtable;
#if IN_LLVM
static StringTable deco_stringtable;