view dmd/backend/symtab_t.d @ 165:25ede4f66bda

Temporarily disabled GC (again) because phobos fails to compile with it (looks like some ObjSymbols are being falsely collected, see Library.d:666) Getting rid of global state (i.e global and static variables) to allow running concurrent compilation
author korDen
date Thu, 30 Sep 2010 10:04:32 +0400
parents e28b18c23469
children af724d3510d7
line wrap: on
line source

module dmd.backend.symtab_t;

import dmd.common;
import dmd.backend.Symbol;
import dmd.backend.Util;
import dmd.backend.SYMIDX;

struct symtab_t
{
    SYMIDX top;			// 1 past end
    SYMIDX symmax;		// max # of entries in tab[] possible
    Symbol** tab;		// local Symbol table
}