summaryrefslogtreecommitdiffstats
path: root/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2015-03-31 20:55:50 +0000
committerGreg Clayton <gclayton@apple.com>2015-03-31 20:55:50 +0000
commit1988ac60a673761063cee407cbc27a403242a0f5 (patch)
tree0edadb3a7f44c36ccd85f7083f44ec9a305c7b1e /lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
parent6843ac470ba8a83a8bb977e0822850dc55ed3319 (diff)
downloadbcm5719-llvm-1988ac60a673761063cee407cbc27a403242a0f5.tar.gz
bcm5719-llvm-1988ac60a673761063cee407cbc27a403242a0f5.zip
Silence a compiler warning about "bAsyncMode" possibly being used uninitialized.
llvm-svn: 233754
Diffstat (limited to 'lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp')
-rw-r--r--lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp b/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
index 494dd06cec0..82ced28a4de 100644
--- a/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
+++ b/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
@@ -222,7 +222,7 @@ CMICmdCmdGdbSet::GetOptionFn(const CMIUtilString &vrPrintFnName, FnGdbOptionPtr
bool
CMICmdCmdGdbSet::OptionFnTargetAsync(const CMIUtilString::VecString_t &vrWords)
{
- bool bAsyncMode;
+ bool bAsyncMode = false;
bool bOk = true;
if (vrWords.size() > 1)
OpenPOWER on IntegriCloud