[Lldb-commits] [PATCH] D63540: Fix lookup of symbols with the same address range but different binding

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jan 13 02:31:37 PST 2020


labath accepted this revision.
labath added a comment.

This looks great now. Thanks for persisting.



================
Comment at: lldb/include/lldb/Symbol/Symtab.h:159-161
+      else if (symbol.IsWeak())
+        return 2;
+      else if (symbol.IsDebug())
----------------
[[ http://llvm.org/docs/CodingStandards.html#don-t-use-else-after-a-return | Don’t use else after a return ]]


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D63540





More information about the lldb-commits mailing list