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:
parent
fad1a41fce
commit
f8b734296e
@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user