diff options
| author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-25 18:44:15 +0000 |
|---|---|---|
| committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-25 18:44:15 +0000 |
| commit | 94e95d2b3eaaf3404b9306c7f402a26beb18c9c4 (patch) | |
| tree | 01a3a8922d75ff482e96b9905550c37715f16674 /llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp | |
| parent | 864c9014443c716da8851661d8e26c11b16bcca4 (diff) | |
| download | bcm5719-llvm-94e95d2b3eaaf3404b9306c7f402a26beb18c9c4.tar.gz bcm5719-llvm-94e95d2b3eaaf3404b9306c7f402a26beb18c9c4.zip | |
Great renaming: Sparc --> SparcV9
llvm-svn: 11826
Diffstat (limited to 'llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp')
| -rw-r--r-- | llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp b/llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp deleted file mode 100644 index fd8289675a2..00000000000 --- a/llvm/lib/Target/Sparc/LiveVar/ValueSet.cpp +++ /dev/null @@ -1,31 +0,0 @@ -// -// 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. -// -//===----------------------------------------------------------------------===// -// FIXME: Eliminate this file. - -#include "llvm/CodeGen/ValueSet.h" -#include "llvm/Value.h" -#include <iostream> - -namespace llvm { - -std::ostream &operator<<(std::ostream &O, RAV V) { // func to print a Value - const Value &v = V.V; - if (v.hasName()) - return O << (void*)&v << "(" << v.getName() << ") "; - else if (isa<Constant>(v)) - return O << (void*)&v << "(" << v << ") "; - else - return O << (void*)&v << " "; -} - -void printSet(const ValueSet &S) { - for (ValueSet::const_iterator I = S.begin(), E = S.end(); I != E; ++I) - std::cerr << RAV(*I); -} - -} // End llvm namespace |

