[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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@245722 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index a7c1ed3..5e63795 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2019-05-23  Myles C. Maxfield  <mmaxfield@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  <sbarati@apple.com>
 
         [WHLSL] Property resolver needs to recurse to handle the base when simplifying rvalues
diff --git a/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h b/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h
index c10ccba..4b32cf0 100644
--- a/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h
+++ b/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h
@@ -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