view dmd/backend/StringTab.d @ 160:ff61fb0e06ae

RTLSYM update
author korDen
date Mon, 20 Sep 2010 01:18:05 +0400
parents e28b18c23469
children fa9a71a9f5a8
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;
__gshared StringTab[STSIZE] stringTab;
__gshared size_t stidx;