diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-29 16:32:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-29 16:32:08 +0000 |
commit | 247f3ee02d62741dbcd89302c3491b708878677c (patch) | |
tree | 5b424ffbc910daded3fe7c49ba49c20e88ed94a2 | |
parent | 01efae0bbff04ba1285fc06eedfb02761b3e4ac2 (diff) | |
download | llvm-247f3ee02d62741dbcd89302c3491b708878677c.zip llvm-247f3ee02d62741dbcd89302c3491b708878677c.tar.gz llvm-247f3ee02d62741dbcd89302c3491b708878677c.tar.bz2 |
Delete unused header file
llvm-svn: 4373
-rw-r--r-- | llvm/include/llvm/CodeGen/RegColorMap.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/llvm/include/llvm/CodeGen/RegColorMap.h b/llvm/include/llvm/CodeGen/RegColorMap.h deleted file mode 100644 index 10987a5..0000000 --- a/llvm/include/llvm/CodeGen/RegColorMap.h +++ /dev/null @@ -1,37 +0,0 @@ -#ifndef REG_COLOR_MAP -#define REG_COLOR_MAP - -#include <hash_map> - - -#ifndef VALUE_SET_H - -struct hashFuncValue { // sturcture containing the hash func - inline size_t operator () (const Value *const val) const - { return (size_t) val; } -}; - -#endif - - -typedef int RegColorType; - - -class RegColorMap : hash_map <const Value *, RegColorType, hashFuncValue> -{ - - public: - - inline void setRegColor(const Value *const Val, RegColorType Col) { - (*this)[Val] = Col; - } - - - inline RegColorType getRegColor(const Value *const Val) { - return (*this)[Val]; - } - - -}; - -#endif |