view ir/irmodule.h @ 158:287540c5f05e trunk

[svn r174] added file missing from previous commit [173]
author ChristianK
date Thu, 01 May 2008 13:33:02 +0200
parents 0ab29b838084
children e3355ce5444b
line wrap: on
line source

#ifndef LLVMDC_IR_IRMODULE_H
#define LLVMDC_IR_IRMODULE_H

#include "ir/ir.h"

struct Module;

struct IrModule : IrBase
{
    IrModule(Module* module);
    virtual ~IrModule();

    Module* M;

    llvm::GlobalVariable* dwarfCompileUnit;
};

#endif