Changeset 180270 in webkit


Ignore:
Timestamp:
Feb 18, 2015 10:23:14 AM (9 years ago)
Author:
msaboff@apple.com
Message:

Unreviewed, Restoring the C LOOP insta-crash fix in r180184.

Fixed a typo that only affected the C Loop in the prologue() macro in LowLevelInterpreter.asm.
After the stackHeightOKGetCodeBlock label, codeBlockSetter(t1) should be codeBlockGetter(t1).

  • llint/LowLevelInterpreter.asm: Fixed a typo.
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r180262 r180270  
     12015-02-17  Michael Saboff  <msaboff@apple.com>
     2
     3        Unreviewed, Restoring the C LOOP insta-crash fix in r180184.
     4
     5        Fixed a typo that only affected the C Loop in the prologue() macro in LowLevelInterpreter.asm.
     6        After the stackHeightOKGetCodeBlock label, codeBlockSetter(t1) should be codeBlockGetter(t1).
     7
     8        * llint/LowLevelInterpreter.asm: Fixed a typo.
     9
    1102015-02-18  Csaba Osztrogonác  <ossy@webkit.org>
    211
  • trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm

    r180248 r180270  
    634634    # Stack check slow path returned that the stack was ok.
    635635    # Since they were clobbered, need to get CodeBlock and new sp
    636     codeBlockSetter(t1)
     636    codeBlockGetter(t1)
    637637    getFrameRegisterSizeForCodeBlock(t1, t0)
    638638    subp cfr, t0, t0
Note: See TracChangeset for help on using the changeset viewer.