Fixing 'Aquire' typo and libcxx build.
authorBen Craig <ben.craig@codeaurora.org>
Tue, 2 Aug 2016 13:43:48 +0000 (13:43 +0000)
committerBen Craig <ben.craig@codeaurora.org>
Tue, 2 Aug 2016 13:43:48 +0000 (13:43 +0000)
llvm-svn: 277456

libcxx/src/include/atomic_support.h
libcxx/src/memory.cpp

index 8b719c5..af0f5f5 100644 (file)
@@ -45,7 +45,7 @@ namespace {
 enum __libcpp_atomic_order {
     _AO_Relaxed = __ATOMIC_RELAXED,
     _AO_Consume = __ATOMIC_CONSUME,
-    _AO_Aquire  = __ATOMIC_ACQUIRE,
+    _AO_Acquire = __ATOMIC_ACQUIRE,
     _AO_Release = __ATOMIC_RELEASE,
     _AO_Acq_Rel = __ATOMIC_ACQ_REL,
     _AO_Seq     = __ATOMIC_SEQ_CST
index b9a741b..b685d12 100644 (file)
@@ -117,7 +117,7 @@ __shared_weak_count::__release_weak() _NOEXCEPT
     // threads, and have them all get copied at once.  The argument
     // also doesn't apply for __release_shared, because an outstanding
     // weak_ptr::lock() could read / modify the shared count.
-    if (__libcpp_atomic_load(&__shared_weak_owners_, _AO_Aquire) == 0)
+    if (__libcpp_atomic_load(&__shared_weak_owners_, _AO_Acquire) == 0)
     {
         // no need to do this store, because we are about
         // to destroy everything.