view ir/irtype.h @ 160:b77664331d06 trunk

[svn r176] Fixed a bug with class constructors.
author lindquist
date Sun, 04 May 2008 04:35:27 +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