Merge the 2.063 frontend.

This commit is contained in:
David Nadlinger
2013-06-07 05:17:29 +02:00
parent 981a6af17e
commit 292caa1438
90 changed files with 10179 additions and 8105 deletions

View File

@@ -24,11 +24,7 @@ struct StringEntry;
// method because the only thing which should be creating these is StringTable.
struct StringValue
{
union
{
void *ptrvalue;
char *string;
};
void *ptrvalue;
private:
size_t length;
@@ -59,7 +55,7 @@ private:
size_t tabledim;
public:
void init(size_t size = 37);
void _init(size_t size = 37);
~StringTable();
StringValue *lookup(const char *s, size_t len);