diff options
author | Enrico Granata <egranata@apple.com> | 2012-12-12 03:23:37 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-12-12 03:23:37 +0000 |
commit | 7b8c513f089a69741797e39b2d0db00ce1db704a (patch) | |
tree | 852bb47d696f509fd416510aaa62fb4751fa60dd /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 181879c293df6a88e8ef054c67c3b32beb5fc92c (diff) | |
download | bcm5719-llvm-7b8c513f089a69741797e39b2d0db00ce1db704a.tar.gz bcm5719-llvm-7b8c513f089a69741797e39b2d0db00ce1db704a.zip |
Option changes:
the option to print the runtime-specific description has been modified in the frame variable, memory read and expression command.
All three commands now support a --object-description option, with a shortcut of -O (uppercase letter o)
This is a breaking change:
frame variable used --objc as the long option name
expression used -o as a shortcut
memory read uses --objd as the long option name
Hopefully, most users won't be affected by the change since people tend to access "expression --object-description" under the alias "po" which still works
The test suite has been tweaked accordingly.
llvm-svn: 169961
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index b707ed9e611..339a3c54a6a 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -279,7 +279,7 @@ CommandInterpreter::Initialize () AddOrReplaceAliasOptions ("call", alias_arguments_vector_sp); alias_arguments_vector_sp.reset (new OptionArgVector); - ProcessAliasOptionsArgs (cmd_obj_sp, "-o --", alias_arguments_vector_sp); + ProcessAliasOptionsArgs (cmd_obj_sp, "-O --", alias_arguments_vector_sp); AddAlias ("po", cmd_obj_sp); AddOrReplaceAliasOptions ("po", alias_arguments_vector_sp); } |