From: Owen Anderson Date: Wed, 20 May 2009 19:01:50 +0000 (+0000) Subject: I just fail today. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=41583b97cec95473f43d90fdcc2fd097aee2c069;p=oota-llvm.git I just fail today. Hopefully this fixes the last build errors on systems with GCC < 4.1. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72179 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/System/Atomic.cpp b/lib/System/Atomic.cpp index e720385e5f0..eee90e22917 100644 --- a/lib/System/Atomic.cpp +++ b/lib/System/Atomic.cpp @@ -38,9 +38,9 @@ sys::cas_flag sys::CompareAndSwap(volatile sys::cas_flag* ptr, sys::cas_flag new_value, sys::cas_flag old_value) { #if LLVM_MULTITHREADED==0 - sys::cas_flag result = *dest; - if (result == c) - *dest = exc; + sys::cas_flag result = *ptr; + if (result == old_value) + *ptr = new_value; return result; #elif defined(__GNUC__) return __sync_val_compare_and_swap(ptr, old_value, new_value);