Title: [187034] trunk/Source/WebCore
Revision
187034
Author
[email protected]
Date
2015-07-20 14:20:34 -0700 (Mon, 20 Jul 2015)

Log Message

Unexpected ABI diffference between armv7 and armv7s in WebCore::GraphicsLayerCA::~GraphicsLayerCA()
<http://webkit.org/b/147101>

Reviewed by Michael Saboff.

* platform/graphics/transforms/TransformationMatrix.h: Align
Matrix4 on both armv7 and armv7s.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (187033 => 187034)


--- trunk/Source/WebCore/ChangeLog	2015-07-20 21:16:41 UTC (rev 187033)
+++ trunk/Source/WebCore/ChangeLog	2015-07-20 21:20:34 UTC (rev 187034)
@@ -1,3 +1,13 @@
+2015-07-20  David Kilzer  <[email protected]>
+
+        Unexpected ABI diffference between armv7 and armv7s in WebCore::GraphicsLayerCA::~GraphicsLayerCA()
+        <http://webkit.org/b/147101>
+
+        Reviewed by Michael Saboff.
+
+        * platform/graphics/transforms/TransformationMatrix.h: Align
+        Matrix4 on both armv7 and armv7s.
+
 2015-07-20  Anders Carlsson  <[email protected]>
 
         Add the necessary platform checks to iOS SPI headers

Modified: trunk/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h (187033 => 187034)


--- trunk/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h	2015-07-20 21:16:41 UTC (rev 187033)
+++ trunk/Source/WebCore/platform/graphics/transforms/TransformationMatrix.h	2015-07-20 21:20:34 UTC (rev 187034)
@@ -65,7 +65,7 @@
     WTF_MAKE_FAST_ALLOCATED;
 public:
 
-#if CPU(APPLE_ARMV7S) || defined(TRANSFORMATION_MATRIX_USE_X86_64_SSE2)
+#if (PLATFORM(IOS) && CPU(ARM_THUMB2)) || defined(TRANSFORMATION_MATRIX_USE_X86_64_SSE2)
 #if COMPILER(MSVC)
     __declspec(align(16)) typedef double Matrix4[4][4];
 #else
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to