summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectFrame.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-04-28 20:55:26 +0000
committerGreg Clayton <gclayton@apple.com>2011-04-28 20:55:26 +0000
commit68ebae61d1e51c2741c14bc9f1995270c84f51a6 (patch)
tree3b8d40d496747c4526cba0082267cd09c590d698 /lldb/source/Commands/CommandObjectFrame.cpp
parentd36bdb5208dc7a9d7eab8e210606d459976d7fb3 (diff)
downloadbcm5719-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/CommandObjectFrame.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index ade3ead6aa5..65214165360 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -334,7 +334,7 @@ public:
case 'L': show_location= true; break;
case 'c': show_decl = true; break;
case 'D': debug = true; break;
- case 'f': error = Args::StringToFormat(option_arg, format); break;
+ case 'f': error = Args::StringToFormat(option_arg, format, NULL); break;
case 'F': flat_output = true; break;
case 'A':
max_depth = Args::StringToUInt32 (option_arg, UINT32_MAX, 0, &success);
OpenPOWER on IntegriCloud