mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-14 20:03:14 +01:00
19 lines
245 B
C
19 lines
245 B
C
#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
|