aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Linker
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-09 04:15:28 +0000
committerChris Lattner <sabre@nondot.org>2009-11-09 04:15:28 +0000
commitfa188de533488e8238ca4b9346b9deb3b9a5a8af (patch)
treec0f1cbe9f0a0241e46bcc7f6136e2d255d9e13d2 /lib/Linker
parent073c12c61ebbb3b88b550dc1a2ebf87abcab9927 (diff)
downloadexternal_llvm-fa188de533488e8238ca4b9346b9deb3b9a5a8af.zip
external_llvm-fa188de533488e8238ca4b9346b9deb3b9a5a8af.tar.gz
external_llvm-fa188de533488e8238ca4b9346b9deb3b9a5a8af.tar.bz2
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
Diffstat (limited to 'lib/Linker')
-rw-r--r--lib/Linker/LinkItems.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Linker/LinkItems.cpp b/lib/Linker/LinkItems.cpp
index 494a013..7213659 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;