view ir/irmodule.h @ 607:9526b29ae342

Fixed the optimizer thing, since llvm PR 2800 is already fixed, users need to upgrade LLVM to latest svn.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Thu, 18 Sep 2008 21:07:35 +0200
parents e3355ce5444b
children eef8ac26c66c
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;

    LLGlobalVariable* dwarfCompileUnit;
};

#endif