aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectMultiword.cpp
diff options
context:
space:
mode:
authorDaniel Malea <daniel.malea@intel.com>2013-02-21 21:18:07 +0000
committerDaniel Malea <daniel.malea@intel.com>2013-02-21 21:18:07 +0000
commitd82ac9e76913b0c02b3f736b1caa680f38a421fd (patch)
tree028a2377a38ed2815d2c6b408137deee7f5fba3a /lldb/source/Commands/CommandObjectMultiword.cpp
parentb29cf48e567bdd6c6ec54f096de7ff263c470142 (diff)
downloadllvm-d82ac9e76913b0c02b3f736b1caa680f38a421fd.zip
llvm-d82ac9e76913b0c02b3f736b1caa680f38a421fd.tar.gz
llvm-d82ac9e76913b0c02b3f736b1caa680f38a421fd.tar.bz2
Fix CommandObjectMultiword to initialize all members, and beef up corresponding test case.
llvm-svn: 175798
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMultiword.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp
index aa3a8eb..c87a9d7 100644
--- a/lldb/source/Commands/CommandObjectMultiword.cpp
+++ b/lldb/source/Commands/CommandObjectMultiword.cpp
@@ -34,7 +34,8 @@ CommandObjectMultiword::CommandObjectMultiword
const char *syntax,
uint32_t flags
) :
- CommandObject (interpreter, name, help, syntax, flags)
+ CommandObject (interpreter, name, help, syntax, flags),
+ m_can_be_removed(false)
{
}