diff options
author | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2014-05-15 02:22:34 +0000 |
commit | 1ee7fc7a1a5125d12b15673fcee500df4bf6241b (patch) | |
tree | 810b11a0f6969a552c0a6be53e0a03129a2ed6a6 /compiler-rt/lib/asan/asan_thread.cc | |
parent | e077269764568465a70f72a7ef21249e25f3afe0 (diff) | |
download | bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.tar.gz bcm5719-llvm-1ee7fc7a1a5125d12b15673fcee500df4bf6241b.zip |
Fix typos
llvm-svn: 208841
Diffstat (limited to 'compiler-rt/lib/asan/asan_thread.cc')
-rw-r--r-- | compiler-rt/lib/asan/asan_thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/asan/asan_thread.cc b/compiler-rt/lib/asan/asan_thread.cc index d4e098ac7ff..1d45573b8a1 100644 --- a/compiler-rt/lib/asan/asan_thread.cc +++ b/compiler-rt/lib/asan/asan_thread.cc @@ -123,7 +123,7 @@ FakeStack *AsanThread::AsyncSignalSafeLazyInitFakeStack() { // 1 -- being initialized // ptr -- initialized // This CAS checks if the state was 0 and if so changes it to state 1, - // if that was successfull, it initilizes the pointer. + // if that was successful, it initializes the pointer. if (atomic_compare_exchange_strong( reinterpret_cast<atomic_uintptr_t *>(&fake_stack_), &old_val, 1UL, memory_order_relaxed)) { |