Changeset 257212 in webkit


Ignore:
Timestamp:
Feb 24, 2020 9:42:20 AM (4 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, build fix for 32bit pointer architectures
https://bugs.webkit.org/show_bug.cgi?id=207827

  • runtime/Structure.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r257201 r257212  
     12020-02-24  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, build fix for 32bit pointer architectures
     4        https://bugs.webkit.org/show_bug.cgi?id=207827
     5
     6        * runtime/Structure.h:
     7
    182020-02-23  Yusuke Suzuki  <ysuzuki@apple.com>
    29
  • trunk/Source/JavaScriptCore/runtime/Structure.h

    r257201 r257212  
    756756    void setTransitionPropertyName(const AbstractLocker&, UniquedStringImpl* transitionPropertyName)
    757757    {
     758#if CPU(ADDRESS64)
    758759        m_maxOffsetAndTransitionPropertyName.setPointer(transitionPropertyName);
     760#else
     761        m_transitionPropertyName = transitionPropertyName;
     762#endif
    759763    }
    760764
Note: See TracChangeset for help on using the changeset viewer.