comparison ir/irmodule.h @ 136:0e28624814e8 trunk

[svn r140] did a lot of the work towards being able to pass multiple modules on the command line. not complete yet though
author lindquist
date Thu, 17 Jan 2008 03:15:12 +0100
parents
children 0ab29b838084
comparison
equal deleted inserted replaced
135:176bd52b3cf5 136:0e28624814e8
1 #ifndef LLVMDC_IR_IRMODULE_H
2 #define LLVMDC_IR_IRMODULE_H
3
4 #include "ir/ir.h"
5
6 struct Module;
7
8 struct IrModule : IrBase
9 {
10 IrModule(Module* module);
11 virtual ~IrModule();
12
13 Module* M;
14 };
15
16 #endif