1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[Object] isNotObjectErrorInvalidFileType: simplify

llvm-svn: 365997
This commit is contained in:
Fangrui Song 2019-07-13 09:28:33 +00:00
parent 12629a9a6d
commit 096e6c6d94

View File

@ -78,8 +78,7 @@ const std::error_category &object::object_category() {
}
llvm::Error llvm::object::isNotObjectErrorInvalidFileType(llvm::Error Err) {
if (auto Err2 =
handleErrors(std::move(Err), [](std::unique_ptr<ECError> M) -> Error {
return handleErrors(std::move(Err), [](std::unique_ptr<ECError> M) -> Error {
// Try to handle 'M'. If successful, return a success value from
// the handler.
if (M->convertToErrorCode() == object_error::invalid_file_type)
@ -89,7 +88,5 @@ llvm::Error llvm::object::isNotObjectErrorInvalidFileType(llvm::Error Err) {
// This value will be passed back from catchErrors and
// wind up in Err2, where it will be returned from this function.
return Error(std::move(M));
}))
return Err2;
return Error::success();
});
}