diff options
author | Greg Clayton <gclayton@apple.com> | 2010-10-10 22:28:11 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2010-10-10 22:28:11 +0000 |
commit | 864174e100adfc092e42edb1c81f9e97f4251dd9 (patch) | |
tree | 59f0022ab0033624d20e7170f267166dc7c48de0 /lldb/source/Commands/CommandObjectArgs.cpp | |
parent | 222f5700c29617ce9aa09c21745904bcedb871ef (diff) | |
download | llvm-864174e100adfc092e42edb1c81f9e97f4251dd9.zip llvm-864174e100adfc092e42edb1c81f9e97f4251dd9.tar.gz llvm-864174e100adfc092e42edb1c81f9e97f4251dd9.tar.bz2 |
Added a new test case to test signals with.
Added frame relative frame selection to "frame select". You can now select
frames relative to the current frame (which defaults to zero if the current
frame hasn't yet been set for a thread):
The gdb "up" command can be done as:
(lldb) frame select -r 1
The gdb "down" command can be done as:
(lldb) frame select -r -1
Place the following in your ~/.lldbinit file for "up" and "down":
command alias up frame select -r 1
command alias down frame select -r -1
llvm-svn: 116176
Diffstat (limited to 'lldb/source/Commands/CommandObjectArgs.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectArgs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectArgs.cpp b/lldb/source/Commands/CommandObjectArgs.cpp index 2df78a4..fd57df6 100644 --- a/lldb/source/Commands/CommandObjectArgs.cpp +++ b/lldb/source/Commands/CommandObjectArgs.cpp @@ -37,7 +37,7 @@ using namespace lldb_private; // CommandObjectArgs::CommandOptions::CommandOptions () : -Options() + Options() { // Keep only one place to reset the values to their defaults ResetOptionValues(); |