view ir/irmodule.h @ 1016:16e2c750c857

Just forgot an opcode for x64
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sat, 28 Feb 2009 18:17:45 -0700
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