Remove extraneous parentheses.

llvm-svn: 191061
This commit is contained in:
Rui Ueyama 2013-09-20 00:33:34 +00:00
parent efd0bcb70f
commit 9f5f635e7f
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ llvm::ErrorOr<StringRef> PECOFFFileNode::path(const LinkingContext &) const {
if (_path.endswith(".lib")) if (_path.endswith(".lib"))
return _ctx.searchLibraryFile(_path); return _ctx.searchLibraryFile(_path);
if (llvm::sys::path::extension(_path).empty()) if (llvm::sys::path::extension(_path).empty())
return (_ctx.allocateString(_path.str() + ".obj")); return _ctx.allocateString(_path.str() + ".obj");
return _path; return _path;
} }