Replace printf with outs() <<

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217005 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Kledzik 2014-09-03 01:12:52 +00:00
parent ae77bf49f4
commit 3ab3a82f72

View File

@ -1804,7 +1804,7 @@ void llvm::printMachOExportsTrie(const object::MachOObjectFile *Obj) {
outs() << Entry.name();
if (WeakDef || ThreadLocal || Resolver || Abs) {
bool NeedsComma = false;
printf(" [");
outs() << " [";
if (WeakDef) {
outs() << "weak_def";
NeedsComma = true;