view ir/irmodule.h @ 179:c853a8a04cdc trunk

[svn r195] fixed some tango bugs (tango ticket 1093).
author lindquist
date Wed, 07 May 2008 05:45:25 +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