diff options
author | Greg Clayton <gclayton@apple.com> | 2010-09-18 04:00:06 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-09-18 04:00:06 +0000 |
commit | f5fb427d8532f69e9a3fe3b46e1da74c5bb0d4b3 (patch) | |
tree | d0a890b29f1a7d9e7d6ca428f889f319b6cc8e55 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | ed8a705cea596388aa0860c3e6fc327939716ce1 (diff) | |
download | bcm5719-llvm-f5fb427d8532f69e9a3fe3b46e1da74c5bb0d4b3.tar.gz bcm5719-llvm-f5fb427d8532f69e9a3fe3b46e1da74c5bb0d4b3.zip |
Fixed an issue with:
(lldb) frame variable --location
Where the address of variables wasn't being formatted consistently.
llvm-svn: 114266
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index d5614688a32..ee411e5f952 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -772,9 +772,9 @@ g_duo_running_mode[] = lldb::OptionDefinition CommandObjectThreadStepWithTypeAndScope::CommandOptions::g_option_table[] = { -{ LLDB_OPT_SET_1, false, "avoid-no-debug", 'a', required_argument, NULL, 0, "<bool>", "A boolean value that sets whether step-in will step over functions with no debug information."}, -{ LLDB_OPT_SET_1, false, "run-mode", 'm', required_argument, g_tri_running_mode, 0, "<run-mode>","Determine how to run other threads while stepping the current thread."}, -{ LLDB_OPT_SET_1, false, "step-over-regexp",'r', required_argument, NULL, 0, "<regexp>", "A regular expression that defines function names to step over."}, +{ LLDB_OPT_SET_1, false, "avoid-no-debug", 'a', required_argument, NULL, 0, "<bool>", "A boolean value that sets whether step-in will step over functions with no debug information."}, +{ LLDB_OPT_SET_1, false, "run-mode", 'm', required_argument, g_tri_running_mode, 0, "<run-mode>", "Determine how to run other threads while stepping the current thread."}, +{ LLDB_OPT_SET_1, false, "step-over-regexp",'r', required_argument, NULL, 0, "<regexp>", "A regular expression that defines function names to step over."}, { 0, false, NULL, 0, 0, NULL, 0, NULL, NULL } }; |