Title: [138409] trunk/Source/WTF
Revision
138409
Author
[email protected]
Date
2012-12-21 22:16:30 -0800 (Fri, 21 Dec 2012)

Log Message

Unreviewed. Another try to fix Apple Win Release build.

* wtf/FastMalloc.cpp:
(WTF::ClassIndex):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (138408 => 138409)


--- trunk/Source/WTF/ChangeLog	2012-12-22 06:06:55 UTC (rev 138408)
+++ trunk/Source/WTF/ChangeLog	2012-12-22 06:16:30 UTC (rev 138409)
@@ -1,5 +1,12 @@
 2012-12-21  Ilya Tikhonovsky  <[email protected]>
 
+        Unreviewed. Another try to fix Apple Win Release build.
+
+        * wtf/FastMalloc.cpp:
+        (WTF::ClassIndex):
+
+2012-12-21  Ilya Tikhonovsky  <[email protected]>
+
         Unreviewed compilation fix for Apple Win Release after r138398.
 
         * wtf/FastMalloc.cpp:

Modified: trunk/Source/WTF/wtf/FastMalloc.cpp (138408 => 138409)


--- trunk/Source/WTF/wtf/FastMalloc.cpp	2012-12-22 06:06:55 UTC (rev 138408)
+++ trunk/Source/WTF/wtf/FastMalloc.cpp	2012-12-22 06:16:30 UTC (rev 138409)
@@ -517,7 +517,7 @@
 #define ROTATE_VALUE(value, amount) (((value) >> (amount)) | ((value) << (sizeof(value) * 8 - (amount))))
 #define XOR_MASK_PTR_WITH_KEY(ptr, key) (reinterpret_cast<typeof(ptr)>(reinterpret_cast<uintptr_t>(ptr)^ROTATE_VALUE(reinterpret_cast<uintptr_t>(key), MaskKeyShift)^ROTATE_VALUE(reinterpret_cast<uintptr_t>(&kLLHardeningMask), MaskAddrShift)))
 #else
-#define XOR_MASK_PTR_WITH_KEY(ptr, key) (ptr1)
+#define XOR_MASK_PTR_WITH_KEY(ptr, key) (ptr)
 #endif
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to