Changeset 250982 in webkit


Ignore:
Timestamp:
Oct 10, 2019 12:40:50 PM (5 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, speculative fix build failure on 32bit
https://bugs.webkit.org/show_bug.cgi?id=202569

  • llint/LowLevelInterpreter32_64.asm:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r250949 r250982  
     12019-10-10  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, speculative fix build failure on 32bit
     4        https://bugs.webkit.org/show_bug.cgi?id=202569
     5
     6        * llint/LowLevelInterpreter32_64.asm:
     7
    182019-10-09  Saam Barati  <sbarati@apple.com>
    29
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm

    r250806 r250982  
    323323macro makeJavaScriptCall(entry, protoCallFrame, temp1, temp2)
    324324    addp CallerFrameAndPCSize, sp
    325     checkStackPointerAlignment(temp, 0xbad0dc02)
     325    checkStackPointerAlignment(temp1, 0xbad0dc02)
    326326    if C_LOOP or C_LOOP_WIN
    327327        cloopCallJSFunction entry
     
    329329        call entry
    330330    end
    331     checkStackPointerAlignment(temp, 0xbad0dc03)
     331    checkStackPointerAlignment(temp1, 0xbad0dc03)
    332332    subp CallerFrameAndPCSize, sp
    333333end
Note: See TracChangeset for help on using the changeset viewer.