[llvm-commits] [llvm] r86510 - /llvm/trunk/lib/Linker/LinkItems.cpp

Chris Lattner sabre at nondot.org
Sun Nov 8 20:15:32 PST 2009


Author: lattner
Date: Sun Nov  8 22:15:28 2009
New Revision: 86510

URL: http://llvm.org/viewvc/llvm-project?rev=86510&view=rev
Log:
remove a redundant printout, LinkInArchive prints this as well.

Modified:
    llvm/trunk/lib/Linker/LinkItems.cpp

Modified: llvm/trunk/lib/Linker/LinkItems.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Linker/LinkItems.cpp?rev=86510&r1=86509&r2=86510&view=diff

==============================================================================
--- llvm/trunk/lib/Linker/LinkItems.cpp (original)
+++ llvm/trunk/lib/Linker/LinkItems.cpp Sun Nov  8 22:15:28 2009
@@ -187,7 +187,6 @@
     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;





More information about the llvm-commits mailing list