diff options
author | Pavel Labath <labath@google.com> | 2018-05-09 14:49:43 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-05-09 14:49:43 +0000 |
commit | 4b130331494ec2dd7d59a251f0dee31717734d8b (patch) | |
tree | ed1ce5c8a59bad0fdf384787cf517ca75fc66668 /lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | |
parent | ed3065f7a199201cfc94d98ea7cc74f3c1c2a769 (diff) | |
download | bcm5719-llvm-4b130331494ec2dd7d59a251f0dee31717734d8b.tar.gz bcm5719-llvm-4b130331494ec2dd7d59a251f0dee31717734d8b.zip |
Fix Windows build for the Predicate.h refactor in r331880
llvm-svn: 331882
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp index badab621925..9a5cb5b9f5a 100644 --- a/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp @@ -363,8 +363,8 @@ DebuggerThread::HandleExceptionEvent(const EXCEPTION_DEBUG_INFO &info, m_exception_pred.SetValue(result, eBroadcastNever); LLDB_LOG(log, "waiting for ExceptionPred != BreakInDebugger"); - m_exception_pred.WaitForValueNotEqualTo(ExceptionResult::BreakInDebugger, - result); + result = *m_exception_pred.WaitForValueNotEqualTo( + ExceptionResult::BreakInDebugger); LLDB_LOG(log, "got ExceptionPred = {0}", (int)m_exception_pred.GetValue()); return result; |