[svn r174] added file missing from previous commit [173]

This commit is contained in:
Christian Kamm
2008-05-01 13:33:02 +02:00
parent 91ae70e969
commit 4cd137f9d4

16
ir/irtype.h Normal file
View File

@@ -0,0 +1,16 @@
#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