Removed obsolete IrSymbol class.

This commit is contained in:
David Nadlinger
2012-12-15 22:31:19 +01:00
parent e592268bf0
commit 4512201de5
6 changed files with 0 additions and 30 deletions

View File

@@ -1 +0,0 @@
#include "ir/irsymbol.h"

View File

@@ -1,21 +0,0 @@
#ifndef __LDC_IR_IRSYMBOL_H__
#define __LDC_IR_IRSYMBOL_H__
#include "ir/ir.h"
/// Base class for all symbols.
class IrSymbol
{
public:
///
IrSymbol(Ir* ir) : ir(ir) {}
/// Migrate symbols to current module if necessary.
virtual void migrate() = 0;
protected:
///
Ir* ir;
};
#endif