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
This commit is contained in:
Chris Lattner 2009-11-09 04:15:28 +00:00
parent dd21a1cba4
commit 49e27a5375

View 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;