view ir/irmodule.h @ 181:ef4108f34db6 trunk

[svn r197] Fixed: empty scope statement segfaulted.
author lindquist
date Wed, 07 May 2008 19:34:41 +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