[Lldb-commits] [PATCH] D27380: [lldb] Update the check for Linux or FreeBSD in SymbolFileDWARF::FindFunctions.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 5 08:31:50 PST 2016


clayborg requested changes to this revision.
clayborg added a comment.
This revision now requires changes to proceed.

Just remove hexagon from the if and this is good to go.



================
Comment at: source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp:2590
+            (arch.GetTriple().isOSBinFormatELF() ||
              arch.GetMachine() == llvm::Triple::hexagon)) {
           SymbolContextList temp_sc_list;
----------------
labath wrote:
> I think we can remove the hexagon part as well. Ted, I presume hexagon uses ELF files?
I believe Hexagon uses ELF so it would be ok to remove the Hexagon from the if.


Repository:
  rL LLVM

https://reviews.llvm.org/D27380





More information about the lldb-commits mailing list