diff options
author | Kuba Mracek <mracek@apple.com> | 2017-06-16 20:59:08 +0000 |
---|---|---|
committer | Kuba Mracek <mracek@apple.com> | 2017-06-16 20:59:08 +0000 |
commit | ef45d8bcd2cceca1051dd4bc6ba6ddc830032b9b (patch) | |
tree | 42698c11e92c441630454ebead9f5780f67181a2 /lldb/source/API/SBThread.cpp | |
parent | f9abd4097e259482cfa2e17df291d7ba294121e0 (diff) | |
download | bcm5719-llvm-ef45d8bcd2cceca1051dd4bc6ba6ddc830032b9b.tar.gz bcm5719-llvm-ef45d8bcd2cceca1051dd4bc6ba6ddc830032b9b.zip |
Upstreaming the UndefinedBehaviorSanitizerRuntime and MainThreadCheckerRuntime plugins.
llvm-svn: 305589
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 65ccb465c8d..d9ce6be3f89 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -293,10 +293,6 @@ SBThread::GetStopReasonExtendedBacktraces(InstrumentationRuntimeType type) { ThreadCollectionSP threads; threads.reset(new ThreadCollection()); - // We currently only support ThreadSanitizer. - if (type != eInstrumentationRuntimeTypeThreadSanitizer) - return threads; - std::unique_lock<std::recursive_mutex> lock; ExecutionContext exe_ctx(m_opaque_sp.get(), lock); |