view ir/irtype.h @ 162:1856c62af24b trunk

[svn r178] Fixed codegen values for function arguments, the old approach was completely broken, amazing it even worked...
author lindquist
date Mon, 05 May 2008 00:56:53 +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