Title: [245722] trunk/Source/WebCore
Revision
245722
Author
mmaxfi...@apple.com
Date
2019-05-23 15:41:43 -0700 (Thu, 23 May 2019)

Log Message

[WHLSL] Implement property resolver
https://bugs.webkit.org/show_bug.cgi?id=195925
<rdar://problem/48219643>

Unreviewed watchOS build fix.

* Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h:
(WebCore::WHLSL::AST::AssignmentExpression::AssignmentExpression):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (245721 => 245722)


--- trunk/Source/WebCore/ChangeLog	2019-05-23 22:21:04 UTC (rev 245721)
+++ trunk/Source/WebCore/ChangeLog	2019-05-23 22:41:43 UTC (rev 245722)
@@ -1,3 +1,14 @@
+2019-05-23  Myles C. Maxfield  <mmaxfi...@apple.com>
+
+        [WHLSL] Implement property resolver
+        https://bugs.webkit.org/show_bug.cgi?id=195925
+        <rdar://problem/48219643>
+
+        Unreviewed watchOS build fix.
+
+        * Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h:
+        (WebCore::WHLSL::AST::AssignmentExpression::AssignmentExpression):
+
 2019-05-23  Saam barati  <sbar...@apple.com>
 
         [WHLSL] Property resolver needs to recurse to handle the base when simplifying rvalues

Modified: trunk/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h (245721 => 245722)


--- trunk/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h	2019-05-23 22:21:04 UTC (rev 245721)
+++ trunk/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h	2019-05-23 22:41:43 UTC (rev 245722)
@@ -44,6 +44,9 @@
         , m_left(WTFMove(left))
         , m_right(WTFMove(right))
     {
+#if CPU(ADDRESS32)
+        UNUSED_PARAM(m_pad);
+#endif
     }
 
     virtual ~AssignmentExpression() = default;
@@ -60,6 +63,9 @@
 private:
     UniqueRef<_expression_> m_left;
     UniqueRef<_expression_> m_right;
+#if CPU(ADDRESS32)
+    char m_pad[1];
+#endif
 };
 
 } // namespace AST
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to