[Lldb-commits] [PATCH] D40812: Remove no-op null checks, NFC

Jason Molenda via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Dec 4 16:23:20 PST 2017


jasonmolenda added a comment.

I don't think that is correct.  here's an example in the form of a makefile.  the main binary calls foo() which is weak linked from a library.  In the first run, foo() is present in the library.  In the second run, the library is rebuilt so foo() is absent.  The behavior of the program differs.

In this case, we needed an lldb which was built on a system with libcompression to be able to run on a system without libcompression.  Although for Apple's purposes, we are no longer supporting lldb on systems without libcompression so it's not really needed any longer for our uses.


https://reviews.llvm.org/D40812





More information about the lldb-commits mailing list