[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
[lldb] Don't emit a warning when using Objective-C getters in expressionsClang emits a warning when accessing an Objective-C getter but not using the result.This gets triggered when just trying to
[lldb] Don't emit a warning when using Objective-C getters in expressionsClang emits a warning when accessing an Objective-C getter but not using the result.This gets triggered when just trying to print a getter value in the expression parser (whereClang just sees a normal expression like `obj.getter` while parsing).This patch just disables the warning in the expression parser (similar to what we do withthe C++ equivalent of just accessing a member variable but not doing anything with it).Reviewed By: kastiglioneDifferential Revision: https://reviews.llvm.org/D94307