diff options
author | Sean Callanan <scallanan@apple.com> | 2012-09-24 22:25:51 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2012-09-24 22:25:51 +0000 |
commit | 3d654b30449e2dedd6e5d3f4961a724cf93860bf (patch) | |
tree | 4634b19442525870a967bd217330e64da44f884b /lldb/source/Commands/CommandObjectMemory.cpp | |
parent | 9f4729d3317f8f04b2e7a1e7ac36418722dc492e (diff) | |
download | bcm5719-llvm-3d654b30449e2dedd6e5d3f4961a724cf93860bf.tar.gz bcm5719-llvm-3d654b30449e2dedd6e5d3f4961a724cf93860bf.zip |
Brought LLDB top-of-tree into sync with LLVM/Clang
top-of-tree. Removed all local patches and llvm.zip.
The intent is that fron now on top-of-tree will
always build against LLVM/Clang top-of-tree, and
that problems building will be resolved as they
occur. Stable release branches of LLDB can be
constructed as needed and linked to specific release
branches of LLVM/Clang.
llvm-svn: 164563
Diffstat (limited to 'lldb/source/Commands/CommandObjectMemory.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectMemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMemory.cpp b/lldb/source/Commands/CommandObjectMemory.cpp index 7c14dceee86..6a008956b65 100644 --- a/lldb/source/Commands/CommandObjectMemory.cpp +++ b/lldb/source/Commands/CommandObjectMemory.cpp @@ -39,7 +39,7 @@ g_option_table[] = { { LLDB_OPT_SET_1, false, "num-per-line" ,'l', required_argument, NULL, 0, eArgTypeNumberPerLine ,"The number of items per line to display."}, { LLDB_OPT_SET_2, false, "binary" ,'b', no_argument , NULL, 0, eArgTypeNone ,"If true, memory will be saved as binary. If false, the memory is saved save as an ASCII dump that uses the format, size, count and number per line settings."}, - { LLDB_OPT_SET_3, true , "view-as" ,'t', required_argument, NULL, 0, eArgTypeNone ,"The name of a type to view memory as."}, + { LLDB_OPT_SET_3, true , "type" ,'t', required_argument, NULL, 0, eArgTypeNone ,"The name of a type to view memory as."}, { LLDB_OPT_SET_4, false, "force" ,'r', no_argument, NULL, 0, eArgTypeNone ,"Necessary if reading over 1024 bytes of memory."}, }; |