Use _isWholeArchive to silence -Wunused-private-field warning.

llvm-svn: 190329
This commit is contained in:
Rui Ueyama 2013-09-09 19:21:06 +00:00
parent e407736a06
commit 67de33b075
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ MachOFileNode::createLinkerInput(const LinkingContext &ctx) {
auto inputFile(FileNode::createLinkerInput(ctx));
if (inputFile)
(*inputFile)->setWholeArchive(false);
(*inputFile)->setWholeArchive(_isWholeArchive);
return std::move(inputFile);
}