comparison ir/ir.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 eef8ac26c66c
comparison
equal deleted inserted replaced
135:176bd52b3cf5 136:0e28624814e8
1 // this head contains stuff used by all the IR
2
3 #ifndef LLVMDC_IR_IR_H
4 #define LLVMDC_IR_IR_H
5
6 #include "ir/irforw.h"
7 #include "root.h"
8
9 struct IrBase : Object
10 {
11 virtual ~IrBase() {}
12 };
13
14 #endif