[PATCH] D75110: Avoid dangling reference when indexing sections

George Rimar via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 5 00:03:20 PST 2020


grimar accepted this revision.
grimar added a comment.

Nasty bug. LGTM too.



================
Comment at: llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h:257
+  // guarantees reference stability.
+  typedef deque<SectionEntry> SectionList;
   SectionList Sections;
----------------
LLVM code usually uses "std::" prefix before STL containers names and algorithms.
(See `std::map` below and other variables).


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D75110/new/

https://reviews.llvm.org/D75110





More information about the llvm-commits mailing list