[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE and having section type debug doesn't contain any valid address

2017-08-11 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. So I looked at the instances of STT_NOTYPE in a few shared libraries on my computer and they do seem to have valid addresses in them. > there are two sections (.text and .debug_ranges) for the file address 0xbcf0. I don't see that from the log. I cleaned up the output

[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE and having section type debug doesn't contain any valid address

2017-08-11 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. Might need to retitle again as well https://reviews.llvm.org/D35784 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D35784: [LLDB][MIPS] The symbol with NOTYPE and having section type debug doesn't contain any valid address

2017-08-11 Thread Nitesh Jain via Phabricator via lldb-commits
nitesh.jain added a comment. The $debug_rangesN symbols are added by linker. These symbols are not used anywhere We can skip these type of symbols (where symbol type is STT_NOTYPE and its section is Debug) https://reviews.llvm.org/D35784 ___ lldb-