[PATCH] D55774: [AArch64] - Return address signing dwarf support
Luke Cheeseman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 18 02:36:50 PST 2018
LukeCheeseman marked an inline comment as done.
LukeCheeseman added inline comments.
================
Comment at: lib/DebugInfo/DWARF/DWARFContext.cpp:1647
auto DObj = llvm::make_unique<DWARFObjInMemory>(Obj, L, HandleError);
- return llvm::make_unique<DWARFContext>(std::move(DObj), std::move(DWPName));
+ std::unique_ptr<DWARFContext> Ctx =
+ llvm::make_unique<DWARFContext>(std::move(DObj), std::move(DWPName));
----------------
olista01 wrote:
> Why is this needed?
Looks like a change that was part of some earlier experimintation, thanks!
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55774/new/
https://reviews.llvm.org/D55774
More information about the llvm-commits
mailing list