view ir/irmodule.h @ 367:519adb3128b1 trunk

[svn r388] ClassInfo declaration could fail if base classdecl hadn't been resolved. Use ForceDeclare on the class decl instead of declaring class info only.
author ChristianK
date Tue, 15 Jul 2008 08:17:43 +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