summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2018-11-15 01:18:16 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2018-11-15 01:18:16 +0000
commitacaffc5c97a908d3cac1f25cdbd8987d1c176d41 (patch)
treef2acf566dcc9b664a2b1eb93332332851538676e /lldb/source/Core
parente103ae92ef2336854587778bd3ae88a87e409a5e (diff)
downloadbcm5719-llvm-acaffc5c97a908d3cac1f25cdbd8987d1c176d41.tar.gz
bcm5719-llvm-acaffc5c97a908d3cac1f25cdbd8987d1c176d41.zip
Fix copy/paste mistake for r346919.
llvm-svn: 346921
Diffstat (limited to 'lldb/source/Core')
-rw-r--r--lldb/source/Core/Debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp
index c8af3284162..19b476bd1f6 100644
--- a/lldb/source/Core/Debugger.cpp
+++ b/lldb/source/Core/Debugger.cpp
@@ -426,7 +426,7 @@ void Debugger::SetReproducerPath(llvm::StringRef p) {
llvm::Error Debugger::SetReproducerCapture(bool b) {
auto &r = repro::Reproducer::Instance();
- if (auto e = r.SetGenerateReproducer(false))
+ if (auto e = r.SetGenerateReproducer(b))
return e;
return llvm::Error::success();
}
OpenPOWER on IntegriCloud