[Lldb-commits] [lldb] d46c655 - [ValueObjectDisplay] Generalize the description of an option.

Davide Italiano via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 29 13:06:25 PDT 2019


Author: Davide Italiano
Date: 2019-10-29T13:05:56-07:00
New Revision: d46c65592e3ac6a78c54514e4919d505c1f0c74a

URL: https://github.com/llvm/llvm-project/commit/d46c65592e3ac6a78c54514e4919d505c1f0c74a
DIFF: https://github.com/llvm/llvm-project/commit/d46c65592e3ac6a78c54514e4919d505c1f0c74a.diff

LOG: [ValueObjectDisplay] Generalize the description of an option.

Added: 
    

Modified: 
    lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
index 81c10a6c762e..da0437ac299c 100644
--- a/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
+++ b/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
@@ -41,7 +41,7 @@ static const OptionDefinition g_option_table[] = {
      {}, 0, eArgTypeNone, "Show variable location information."},
     {LLDB_OPT_SET_1, false, "object-description", 'O',
      OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone,
-     "Print as an Objective-C object."},
+     "Display using a language-specific description API, if possible."},
     {LLDB_OPT_SET_1, false, "ptr-depth", 'P', OptionParser::eRequiredArgument,
      nullptr, {}, 0, eArgTypeCount, "The number of pointers to be traversed "
                                     "when dumping values (default is zero)."},


        


More information about the lldb-commits mailing list