summaryrefslogtreecommitdiff
path: root/omegalib/code_gen/include/code_gen/CG_outputRepr.h
diff options
context:
space:
mode:
Diffstat (limited to 'omegalib/code_gen/include/code_gen/CG_outputRepr.h')
-rw-r--r--omegalib/code_gen/include/code_gen/CG_outputRepr.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/omegalib/code_gen/include/code_gen/CG_outputRepr.h b/omegalib/code_gen/include/code_gen/CG_outputRepr.h
deleted file mode 100644
index 92f3d9f..0000000
--- a/omegalib/code_gen/include/code_gen/CG_outputRepr.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*****************************************************************************
- Copyright (C) 1994-2000 the Omega Project Team
- Copyright (C) 2005-2011 Chun Chen
- All Rights Reserved.
-
- Purpose:
- abstract base class of compiler IR code wrapper
-
- Notes:
-
- History:
- 04/17/96 - Lei Zhou - created
-*****************************************************************************/
-
-#ifndef _CG_OUTPUTREPR_H
-#define _CG_OUTPUTREPR_H
-
-namespace omega {
-
-class CG_outputRepr {
-public:
- CG_outputRepr() {}
- virtual ~CG_outputRepr() { /* shallow delete */ }
- virtual CG_outputRepr *clone() const = 0;
- virtual void clear() { /* delete actual IR code wrapped inside */ }
- virtual void dump() const {}
-};
-
-}
-
-#endif