From: Chris Lattner Date: Mon, 9 Nov 2009 04:15:28 +0000 (+0000) Subject: remove a redundant printout, LinkInArchive prints this as well. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=49e27a5375b20e3f422730fd77425baf5abd4e68;p=oota-llvm.git remove a redundant printout, LinkInArchive prints this as well. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86510 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Linker/LinkItems.cpp b/lib/Linker/LinkItems.cpp index 494a0130f12..72136590479 100644 --- a/lib/Linker/LinkItems.cpp +++ b/lib/Linker/LinkItems.cpp @@ -187,7 +187,6 @@ bool Linker::LinkInFile(const sys::Path &File, bool &is_native) { case sys::Archive_FileType: // A user may specify an ar archive without -l, perhaps because it // is not installed as a library. Detect that and link the archive. - verbose("Linking archive file '" + File.str() + "'"); if (LinkInArchive(File, is_native)) return true; break;