[Lldb-commits] [PATCH] D80418: Print a warning when stopped in a frame LLDB has no plugin for.

Jonas Devlieghere via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri May 22 10:43:28 PDT 2020


JDevlieghere added inline comments.


================
Comment at: lldb/source/Target/Process.cpp:5808
+void Process::PrintWarningUnsupportedLanguage(const SymbolContext &sc) {
+  if (!GetWarningsUnsupportedLanguage())
+    return;
----------------
For `eWarningsOptimization` this check happens in `PrintWarning`. I think your approach is better, but it'd be nice for the two to be consistent. 


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

https://reviews.llvm.org/D80418





More information about the lldb-commits mailing list