mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-07-30 11:00:05 +02:00
[svn r140] did a lot of the work towards being able to pass multiple modules on the command line. not complete yet though
This commit is contained in:
16
ir/irmodule.h
Normal file
16
ir/irmodule.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#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;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user