mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
19 lines
256 B
C
19 lines
256 B
C
#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;
|
|
};
|
|
|
|
#endif
|