Remove an warning message that can be spammy.
authorRui Ueyama <ruiu@google.com>
Fri, 30 Sep 2016 19:59:25 +0000 (19:59 +0000)
committerRui Ueyama <ruiu@google.com>
Fri, 30 Sep 2016 19:59:25 +0000 (19:59 +0000)
commiteb0007aa0ca4051702e56916b47830dacc3fef3e
tree1b27b2db52f435cf08f8878a56d8946892162dcb
parenta8eebf11f1c9dd24fb8f769a892ca819ccbeee74
Remove an warning message that can be spammy.

This was intended to warn on a usage error of an ar command.
I was thinking that false positive would be rare because it
has two guards: it warns only when an archive file has no symbols
and contains at least one file.

Turned out that false positive would probably be not that rare.
You wouldn't intentionally create an object file that contains no
exported symbols, but with conditional compile guards, you could
create such file. If it is for a LTO build, you could create an
archive file containing such file. That means there's no way to
detect the usage error in a reliable manner.

This patch simply removes the warning.

llvm-svn: 282916
lld/ELF/InputFiles.cpp