]> granicus.if.org Git - llvm/commit
[Support] Remove error return value from one overload of fs::make_absolute
authorPavel Labath <pavel@labath.sk>
Wed, 16 Jan 2019 09:55:32 +0000 (09:55 +0000)
committerPavel Labath <pavel@labath.sk>
Wed, 16 Jan 2019 09:55:32 +0000 (09:55 +0000)
commitb8c855b48d4bcb3763ace59e5cf7103bf0768e9a
tree698d5e3daf7e85a294393d984d0c956750be3c48
parent6dbe225afee23c2c19fb4ae5ee688d9824be525d
[Support] Remove error return value from one overload of fs::make_absolute

Summary:
The version of make_absolute which accepted a specific directory to use
as the "base" for the computation could never fail, even though it
returned a std::error_code. The reason for that seems to be historical
-- the CWD flavour (which can fail due to failure to retrieve CWD) was
there first, and the new version was implemented by extending that.

This removes the error return value from the non-CWD overload and
reimplements the CWD version on top of that. This enables us to remove
some dead code where people were pessimistically trying to handle the
errors returned from this function.

Reviewers: zturner, sammccall

Subscribers: hiraditya, kristina, llvm-commits

Differential Revision: https://reviews.llvm.org/D56599

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351317 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Support/FileSystem.h
lib/Support/Path.cpp
lib/Support/VirtualFileSystem.cpp
tools/llvm-opt-report/OptReport.cpp
unittests/Support/Path.cpp