view ir/irtype.h @ 169:2df270e1ba59 trunk

[svn r185] Fixed broken nested classes with data members, did DMD change the class layout? tango.text.Regex now compiles. Commented some of the *very* verbose logging for -vv option.
author lindquist
date Tue, 06 May 2008 03:07:21 +0200
parents 287540c5f05e
children db9890b3fb64
line wrap: on
line source

#ifndef LLVMDC_IR_IRTYPE_H
#define LLVMDC_IR_IRTYPE_H

#include "ir/ir.h"

namespace llvm {
    class PATypeHolder;
}

struct IrType
{
    llvm::PATypeHolder* type;
    llvm::PATypeHolder* vtblType;
};

#endif