view ir/irmodule.h @ 519:bc0835cd3440

Don't assert on empty foreach body. Fixes: run/f/foreach_28_B
author Christian Kamm <kamm incasoftware de>
date Sat, 16 Aug 2008 12:38:53 +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