summaryrefslogtreecommitdiffstats
path: root/Source/WTF/wtf/Atomics.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WTF/wtf/Atomics.h')
-rw-r--r--Source/WTF/wtf/Atomics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WTF/wtf/Atomics.h b/Source/WTF/wtf/Atomics.h
index 4b3eb4b88..8f950c718 100644
--- a/Source/WTF/wtf/Atomics.h
+++ b/Source/WTF/wtf/Atomics.h
@@ -188,7 +188,7 @@ inline bool weakCompareAndSwap(void*volatile* location, void* expected, void* ne
#if CPU(X86_64)
bool result;
asm volatile(
- "lock; cmpxchgq %3, %2\n\t"
+ "lock; cmpxchg %3, %2\n\t"
"sete %1"
: "+a"(expected), "=q"(result), "+m"(*location)
: "r"(newValue)