diff options
author | Greg Clayton <gclayton@apple.com> | 2011-04-28 20:55:26 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-04-28 20:55:26 +0000 |
commit | 68ebae61d1e51c2741c14bc9f1995270c84f51a6 (patch) | |
tree | 3b8d40d496747c4526cba0082267cd09c590d698 /lldb/source/Commands/CommandObjectExpression.cpp | |
parent | d36bdb5208dc7a9d7eab8e210606d459976d7fb3 (diff) | |
download | bcm5719-llvm-68ebae61d1e51c2741c14bc9f1995270c84f51a6.tar.gz bcm5719-llvm-68ebae61d1e51c2741c14bc9f1995270c84f51a6.zip |
Added the ability to specify dumping options (show types, show location,
depth control, pointer depth, and more) when dumping memory and viewing as
a type.
llvm-svn: 130436
Diffstat (limited to 'lldb/source/Commands/CommandObjectExpression.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectExpression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp index ee14839372b..ed7824bd823 100644 --- a/lldb/source/Commands/CommandObjectExpression.cpp +++ b/lldb/source/Commands/CommandObjectExpression.cpp @@ -70,7 +70,7 @@ CommandObjectExpression::CommandOptions::SetOptionValue (uint32_t option_idx, co break; case 'f': - error = Args::StringToFormat(option_arg, format); + error = Args::StringToFormat(option_arg, format, NULL); break; case 'o': |