diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-04-07 22:50:35 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-04-07 22:50:35 +0000 |
commit | afbae16179f3867e34284de9ef55e971c070cb44 (patch) | |
tree | a9475bf812e995bc58daa08932b39f8941d61ca2 /lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | |
parent | 5b44f1ba199d78bb3e5319fc7958d0a2ba90c168 (diff) | |
download | bcm5719-llvm-afbae16179f3867e34284de9ef55e971c070cb44.tar.gz bcm5719-llvm-afbae16179f3867e34284de9ef55e971c070cb44.zip |
Fix compilation failure caused by r234366.
llvm-svn: 234373
Diffstat (limited to 'lldb/source/Plugins/Process/POSIX/POSIXThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/POSIXThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp index 2749301201e..975c2dd72ab 100644 --- a/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp +++ b/lldb/source/Plugins/Process/POSIX/POSIXThread.cpp @@ -515,7 +515,7 @@ POSIXThread::BreakNotify(const ProcessMessage &message) // If we have an operating system plug-in, we might have set a thread specific breakpoint using the // operating system thread ID, so we can't make any assumptions about the thread ID so we must always // report the breakpoint regardless of the thread. - if (bp_site->ValidForThisThread(this) || thread.GetProcess()->GetOperatingSystem () != NULL) + if (bp_site->ValidForThisThread(this) || GetProcess()->GetOperatingSystem () != NULL) SetStopInfo (StopInfo::CreateStopReasonWithBreakpointSiteID(*this, bp_id)); else { |