Remove the volatile marker from the cas_flag typedef, fixing some warnings.

It's now the client's resposibility to add it in when needed

llvm-svn: 71959
This commit is contained in:
Owen Anderson 2009-05-16 21:08:25 +00:00
parent d3a69ceaaf
commit 48371650b6
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ namespace llvm {
__sync_synchronize();
}
typedef volatile uint32_t cas_flag;
typedef uint32_t cas_flag;
inline cas_flag CompareAndSwap(cas_flag* dest, cas_flag exc, cas_flag c) {
return __sync_val_compare_and_swap(dest, exc, c);
}
@ -56,7 +56,7 @@ namespace llvm {
OSMemoryBarrier();
}
typedef volatile int32_t cas_flag;
typedef int32_t cas_flag;
inline cas_flag CompareAndSwap(cas_flag* dest, cas_flag exc, cas_flag c) {
cas_flag old = *dest;
OSAtomicCompareAndSwap32(c, exc, dest);