[PATCH] D55774: [AArch64] - Return address signing dwarf support

Oliver Stannard via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 18 02:35:43 PST 2018


olista01 accepted this revision.
olista01 added a comment.
This revision is now accepted and ready to land.

LGTM with one nit.



================
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));
----------------
Why is this needed?


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