[Lldb-commits] [PATCH] D43099: Make LLDB's clang module cache path customizable

Davide Italiano via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 9 09:48:54 PST 2018


davide accepted this revision.
davide added a comment.

LGTM modulo minor.



================
Comment at: source/Plugins/ExpressionParser/Clang/CMakeLists.txt:26
     clangCodeGen
+    clangDriver
     clangEdit
----------------
aprantl wrote:
> I checked and this does not affects LLDB's binary size in any measurable way.
This doesn't surprise me, as the driver is very small.


================
Comment at: source/Target/Target.cpp:3949
+                                                               idx);
+  assert(option_value);
+  return option_value->GetCurrentValue();
----------------
add an assertion message if you don't mind?


https://reviews.llvm.org/D43099





More information about the lldb-commits mailing list