JDevlieghere added inline comments.
================ Comment at: source/Utility/LLDBAssert.cpp:23 if (expression) ; else { ---------------- I guess while we're at it we can turn this into an early return and use LLVM_LIKELY? ``` if (LLVM_LIKELY(expression)) return; ``` Repository: rLLDB LLDB https://reviews.llvm.org/D51604 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits