[Lldb-commits] [PATCH] D41169: ObjectFile: remove ReadSectionData/MemoryMapSectionData mutual recursion

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 13 12:22:58 PST 2017


clayborg accepted this revision.
clayborg added a comment.

This was left over from before we mmap'ed the entire object file into memory. Removing it is fine as the backing DataBufferSP for the object file will be mmaped or not depending on where the file was loaded from and if the section isn't compressed, we will just hand out a shared slice of the object file data.


https://reviews.llvm.org/D41169





More information about the lldb-commits mailing list