summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-29 16:32:08 +0000
committerChris Lattner <sabre@nondot.org>2002-10-29 16:32:08 +0000
commit4b28abb57f249d979193bbf3f0427d903ae3005b (patch)
tree84e255e24d2e01fe9378af0c4bf37eaae4758be3 /include
parent047bbafb99a353ed68e60eab147f5822a09a99ea (diff)
downloadllvm-4b28abb57f249d979193bbf3f0427d903ae3005b.tar.gz
llvm-4b28abb57f249d979193bbf3f0427d903ae3005b.tar.bz2
llvm-4b28abb57f249d979193bbf3f0427d903ae3005b.tar.xz
Delete unused header file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4373 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/RegColorMap.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/llvm/CodeGen/RegColorMap.h b/include/llvm/CodeGen/RegColorMap.h
deleted file mode 100644
index 10987a5927..0000000000
--- a/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