Changeset 245722 in webkit


Ignore:
Timestamp:
May 23, 2019 3:41:43 PM (5 years ago)
Author:
mmaxfield@apple.com
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):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r245721 r245722  
     12019-05-23  Myles C. Maxfield  <mmaxfield@apple.com>
     2
     3        [WHLSL] Implement property resolver
     4        https://bugs.webkit.org/show_bug.cgi?id=195925
     5        <rdar://problem/48219643>
     6
     7        Unreviewed watchOS build fix.
     8
     9        * Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h:
     10        (WebCore::WHLSL::AST::AssignmentExpression::AssignmentExpression):
     11
    1122019-05-23  Saam barati  <sbarati@apple.com>
    213
  • trunk/Source/WebCore/Modules/webgpu/WHLSL/AST/WHLSLAssignmentExpression.h

    r245680 r245722  
    4545        , m_right(WTFMove(right))
    4646    {
     47#if CPU(ADDRESS32)
     48        UNUSED_PARAM(m_pad);
     49#endif
    4750    }
    4851
     
    6164    UniqueRef<Expression> m_left;
    6265    UniqueRef<Expression> m_right;
     66#if CPU(ADDRESS32)
     67    char m_pad[1];
     68#endif
    6369};
    6470
Note: See TracChangeset for help on using the changeset viewer.