view ir/irdtype.h @ 1341:681dd955c53b

Run backend without optimizations when no optimization parameters were used, even when not generating debug info.
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 10 May 2009 20:22:08 +0200
parents 2a92c115461d
children
line wrap: on
line source

#ifndef LDC_IR_IRDTYPE_H
#define LDC_IR_IRDTYPE_H

#include <set>

namespace llvm {
    class PATypeHolder;
}

struct IrDType
{
    IrDType();
    llvm::PATypeHolder* type;
};

#endif