[PATCH] D143793: Add the ability to segment GSYM files.
Mikael Holmén via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 2 22:30:53 PST 2023
uabelho added a comment.
I get the following with this patch
../unittests/DebugInfo/GSYM/GSYMTest.cpp:2492:12: error: call to deleted constructor of 'llvm::Error'
return FinalizeErr;
^~~~~~~~~~~
../include/llvm/Support/Error.h:185:3: note: 'Error' has been explicitly marked deleted here
Error(const Error &Other) = delete;
^
../include/llvm/Support/Error.h:492:18: note: passing argument to parameter 'Err' here
Expected(Error Err)
^
../unittests/DebugInfo/GSYM/GSYMTest.cpp:2499:12: error: call to deleted constructor of 'llvm::Error'
return Err;
^~~
../include/llvm/Support/Error.h:185:3: note: 'Error' has been explicitly marked deleted here
Error(const Error &Other) = delete;
^
../include/llvm/Support/Error.h:492:18: note: passing argument to parameter 'Err' here
Expected(Error Err)
^
2 errors generated.
Also seen here
https://lab.llvm.org/buildbot/#/builders/109/builds/58893
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143793/new/
https://reviews.llvm.org/D143793
More information about the llvm-commits
mailing list