view ir/irmodule.h @ 673:37a7688a7494

Add basics for direct assembly output.
author Christian Kamm <kamm incasoftware de>
date Sat, 11 Oct 2008 11:07:53 +0200
parents eef8ac26c66c
children b411c41a9716
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);
    virtual ~IrModule();

    Module* M;

    LLGlobalVariable* dwarfCompileUnit;
};

#endif