remove a redundant printout, LinkInArchive prints this as well.
authorChris Lattner <sabre@nondot.org>
Mon, 9 Nov 2009 04:15:28 +0000 (04:15 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 9 Nov 2009 04:15:28 +0000 (04:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86510 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Linker/LinkItems.cpp

index 494a0130f12f8bfa89c99cbd5553ff5962709a0c..72136590479a137d7602784268c739f8804b8fd6 100644 (file)
@@ -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;