view dmd/backend/symtab_t.d @ 174:af724d3510d7

lot os toCBuffer methods implemented moved shared Type.* stuff into Global
author korDen
date Sun, 10 Oct 2010 03:47:23 +0400
parents e28b18c23469
children
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_S
{
    SYMIDX top;			// 1 past end
    SYMIDX symmax;		// max # of entries in tab[] possible
    Symbol** tab;		// local Symbol table
}

alias SYMTAB_S symtab_t;