1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

Send text and numbers directly to CachedWriter's contained ostream.

llvm-svn: 13243
This commit is contained in:
Misha Brukman 2004-04-28 18:52:43 +00:00
parent fad1a41fce
commit f8b734296e

View File

@ -98,7 +98,8 @@ void FindUnsafePointerTypes::print(std::ostream &o, const Module *M) const {
for (std::set<PointerType*>::const_iterator I = getUnsafeTypes().begin(),
E = getUnsafeTypes().end(); I != E; ++I, ++Counter) {
CW << " #" << Counter << ". " << (Value*)*I << "\n";
o << " #" << Counter << ". ";
CW << (Value*)*I << "\n";
}
}