view dmd/backend/DT.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.DT;

import dmd.common;
import dmd.backend.dt_t;

enum DT
{
    DT_abytes,
    DT_azeros,  // 1
    DT_xoff,
    DT_1byte,
    DT_nbytes,
    DT_common,
    DT_symsize,
    DT_coff,
    DT_ibytes, // 8
}

import dmd.EnumUtils;
mixin(BringToCurrentScope!(DT));