[llvm] [llvm-objcopy] Fix prints wrong path when section output path doesn't exist (PR #125345)
James Henderson via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 5 01:26:40 PST 2025
================
@@ -1404,6 +1404,22 @@ inline Error createFileError(const Twine &F, size_t Line, std::error_code EC) {
return createFileError(F, Line, errorCodeToError(EC));
}
+/// Concatenate a source file path with a std::error_code and string error
+inline Error createFileError(const Twine &F, std::error_code EC,
----------------
jh7370 wrote:
If you want to add this helper to the Error.h header, you should do it in a separate, prerequisite PR and include unit tests.
https://github.com/llvm/llvm-project/pull/125345
More information about the llvm-commits
mailing list