aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ValueSet.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-08-11 21:11:35 +0000
committerChris Lattner <sabre@nondot.org>2006-08-11 21:11:35 +0000
commit0c2ecdd9af8c7e7a1d43144af249af030c5ef462 (patch)
tree0b4390c799fb7eef7032cde5fa4f0ba604dd5ffb /include/llvm/CodeGen/ValueSet.h
parent2b5a82fe1d0d8fdb5ec984b53345327d6c05637b (diff)
remove old piece of the V9 backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ValueSet.h')
-rw-r--r--include/llvm/CodeGen/ValueSet.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/include/llvm/CodeGen/ValueSet.h b/include/llvm/CodeGen/ValueSet.h
deleted file mode 100644
index 558e7489d1..0000000000
--- a/include/llvm/CodeGen/ValueSet.h
+++ /dev/null
@@ -1,39 +0,0 @@
-//===-- llvm/CodeGen/ValueSet.h ---------------------------------*- C++ -*-===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This header is OBSOLETE, do not use it for new code.
-//
-// FIXME: Eliminate this file.
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef VALUE_SET_H
-#define VALUE_SET_H
-
-#include <set>
-
-namespace llvm {
-
-class Value;
-
-// RAV - Used to print values in a form used by the register allocator.
-//
-struct RAV { // Register Allocator Value
- const Value &V;
- RAV(const Value *v) : V(*v) {}
- RAV(const Value &v) : V(v) {}
-};
-std::ostream &operator<<(std::ostream &out, RAV Val);
-
-typedef std::set<const Value*> ValueSet;
-void printSet(const ValueSet &S);
-
-} // End llvm namespace
-
-#endif