Simplify and update code a bit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2376 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-04-28 19:20:10 +00:00
parent b9ddce65c2
commit bfeec103e1
2 changed files with 10 additions and 10 deletions

View File

@ -2,17 +2,17 @@
#include "llvm/Analysis/LiveVar/ValueSet.h"
#include "llvm/ConstantVals.h"
#include "llvm/Value.h"
#include <iostream>
std::ostream &operator<<(std::ostream &O, RAV V) { // func to print a Value
const Value *v = V.V;
if (v->hasName())
return O << v << "(" << v->getName() << ") ";
else if (Constant *C = dyn_cast<Constant>(v))
return O << v << "(" << C << ") ";
return O << (void*)v << "(" << v->getName() << ") ";
else if (isa<Constant>(v))
return O << (void*)v << "(" << v << ") ";
else
return O << v << " ";
return O << (void*)v << " ";
}
void printSet(const ValueSet &S) {

View File

@ -2,17 +2,17 @@
#include "llvm/Analysis/LiveVar/ValueSet.h"
#include "llvm/ConstantVals.h"
#include "llvm/Value.h"
#include <iostream>
std::ostream &operator<<(std::ostream &O, RAV V) { // func to print a Value
const Value *v = V.V;
if (v->hasName())
return O << v << "(" << v->getName() << ") ";
else if (Constant *C = dyn_cast<Constant>(v))
return O << v << "(" << C << ") ";
return O << (void*)v << "(" << v->getName() << ") ";
else if (isa<Constant>(v))
return O << (void*)v << "(" << v << ") ";
else
return O << v << " ";
return O << (void*)v << " ";
}
void printSet(const ValueSet &S) {