File webkitgtk-x86-assembler-fix.patch of Package webkitgtk
--- a/Source/WTF/wtf/Atomics.h +++ b/Source/WTF/wtf/Atomics.h @@ -163,7 +163,7 @@ inline bool weakCompareAndSwap(void*vola "lock; cmpxchgq %3, %2\n\t" "sete %1" : "+a"(expected), "=q"(result), "+m"(*location) - : "r"(newValue) + : "q"(newValue) : "memory" ); return result;