Title: [106133] branches/safari-534.54-branch/Source/_javascript_Core
Revision
106133
Author
[email protected]
Date
2012-01-27 11:01:03 -0800 (Fri, 27 Jan 2012)

Log Message

2012-01-27  Mark Hahnenberg  <[email protected]>

        32-bit Windows build fix

        Unreviewed build fix

        <rdar://problem/10742649>

        * wtf/Atomics.h:

Modified Paths

Diff

Modified: branches/safari-534.54-branch/Source/_javascript_Core/ChangeLog (106132 => 106133)


--- branches/safari-534.54-branch/Source/_javascript_Core/ChangeLog	2012-01-27 18:27:45 UTC (rev 106132)
+++ branches/safari-534.54-branch/Source/_javascript_Core/ChangeLog	2012-01-27 19:01:03 UTC (rev 106133)
@@ -1,3 +1,13 @@
+2012-01-27  Mark Hahnenberg  <[email protected]>
+
+        32-bit Windows build fix
+
+        Unreviewed build fix
+
+        <rdar://problem/10742649>
+
+        * wtf/Atomics.h:
+
 2011-01-27  Lucas Forschler  <[email protected]>
 
     Merge 106075

Modified: branches/safari-534.54-branch/Source/_javascript_Core/wtf/Atomics.h (106132 => 106133)


--- branches/safari-534.54-branch/Source/_javascript_Core/wtf/Atomics.h	2012-01-27 18:27:45 UTC (rev 106132)
+++ branches/safari-534.54-branch/Source/_javascript_Core/wtf/Atomics.h	2012-01-27 19:01:03 UTC (rev 106133)
@@ -181,10 +181,12 @@
 #endif // ENABLE(COMPARE_AND_SWAP)
 }
 
+#if CPU(X86_64)
 inline bool weakCompareAndSwap(volatile uintptr_t* location, uintptr_t expected, uintptr_t newValue)
 {
     return weakCompareAndSwap(reinterpret_cast<void*volatile*>(location), reinterpret_cast<void*>(expected), reinterpret_cast<void*>(newValue));
 }
+#endif
 
 } // namespace WTF
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to