changeset 158:287540c5f05e trunk

[svn r174] added file missing from previous commit [173]
author ChristianK
date Thu, 01 May 2008 13:33:02 +0200
parents 5c17f81fc1c1
children 5acec6b2eef8
files ir/irtype.h
diffstat 1 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ir/irtype.h	Thu May 01 13:33:02 2008 +0200
@@ -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