view ir/irtype.h @ 167:adca7f32fb6d trunk

[svn r183] Fixed broken identity expressions with two pointers of different types. Fixed broken pointer arithmetic for subtraction (tango.text.Util unittest now passes)
author lindquist
date Tue, 06 May 2008 01:23:02 +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