[compiler-rt] 8ed0213 - Fix typo causing build failure
Logan Smith via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 20 15:15:05 PDT 2020
Author: Logan Smith
Date: 2020-07-20T15:14:08-07:00
New Revision: 8ed021382e6b1d00bf907ac595b5493a02355c2c
URL: https://github.com/llvm/llvm-project/commit/8ed021382e6b1d00bf907ac595b5493a02355c2c
DIFF: https://github.com/llvm/llvm-project/commit/8ed021382e6b1d00bf907ac595b5493a02355c2c.diff
LOG: Fix typo causing build failure
(facepalm)
Added:
Modified:
compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
index dfa70c8ef6c9..bd72c0ae00cb 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
@@ -89,7 +89,7 @@ class SuspendedThreadsListLinux : public SuspendedThreadsList {
public:
SuspendedThreadsListLinux() { thread_ids_.reserve(1024); }
- tid_t GetThreadID(uptr index) override const;
+ tid_t GetThreadID(uptr index) const override;
uptr ThreadCount() const override;
bool ContainsTid(tid_t thread_id) const;
void Append(tid_t tid);
More information about the llvm-commits
mailing list