Remove extraneous parentheses.

llvm-svn: 204986
This commit is contained in:
Rui Ueyama 2014-03-28 03:26:24 +00:00
parent 73609a0fb3
commit 14a1e0c0fc
1 changed files with 2 additions and 2 deletions

View File

@ -408,8 +408,8 @@ bool GnuLdDriver::parse(int argc, const char *argv[],
<< "\n";
return false;
}
if ((!userPath.endswith(".objtxt")) &&
(magic == llvm::sys::fs::file_magic::unknown))
if (!userPath.endswith(".objtxt") &&
magic == llvm::sys::fs::file_magic::unknown)
isELFFileNode = false;
FileNode *inputNode = nullptr;
if (isELFFileNode)