view dmd/backend/StringTab.d @ 176:fa9a71a9f5a8

Moved all the mutable globals to Global
author korDen
date Sun, 10 Oct 2010 05:22:45 +0400
parents e28b18c23469
children
line wrap: on
line source

module dmd.backend.StringTab;

import dmd.common;
import dmd.Module;
import dmd.backend.Symbol;

struct StringTab
{
    Module m;		// module we're generating code for
    Symbol* si;
    void* string_;
    size_t sz;
    size_t len;
}

enum STSIZE = 16;