now send references to ostreams instead of pointers. Sending pointers to
ostreams will print their addresses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14849
91177308-0d34-0410-b5e6-
96231b3b80d8
return Ty.getTypeID() == Type::PointerTyID;
}
-std::ostream &operator<<(std::ostream &OS, const Type *T);
std::ostream &operator<<(std::ostream &OS, const Type &T);
} // End llvm namespace
friend class Instruction;
};
-inline std::ostream &operator<<(std::ostream &OS, const Value *V) {
- if (V == 0)
- OS << "<null> value!\n";
- else
- V->print(OS);
- return OS;
-}
-
inline std::ostream &operator<<(std::ostream &OS, const Value &V) {
V.print(OS);
return OS;