view ir/irmodule.h @ 1288:e109e4031e8a

Fix build when USE_METADATA is off.
author Matti Niemenmaa <matti.niemenmaa+hg@iki.fi>
date Sat, 02 May 2009 19:03:33 +0300
parents 1714836f2c0b
children
line wrap: on
line source

#ifndef LDC_IR_IRMODULE_H
#define LDC_IR_IRMODULE_H

#include "ir/ir.h"

struct Module;

struct IrModule : IrBase
{
    IrModule(Module* module, const char* srcfilename);
    virtual ~IrModule();

    Module* M;

    LLGlobalVariable* fileName;
    llvm::DICompileUnit diCompileUnit;
};

#endif