Changeset 161942 in webkit


Ignore:
Timestamp:
Jan 13, 2014 8:51:39 PM (10 years ago)
Author:
mark.lam@apple.com
Message:

Gardening: fix bad merge of https://bugs.webkit.org/show_bug.cgi?id=126790
on top of https://bugs.webkit.org/show_bug.cgi?id=126932.

Not reviewed.

  • llint/LowLevelInterpreter.asm:
  • the 2 patches implemented the same change in callToJavaScriptPrologue() and callToJavaScriptEpilogue(), but svn merged the changes without reporting a conflict. The result is a redundant push of lr and pop of cfr. This is now fixed.
Location:
branches/jsCStack/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/jsCStack/Source/JavaScriptCore/ChangeLog

    r161938 r161942  
     12014-01-13  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: fix bad merge of https://bugs.webkit.org/show_bug.cgi?id=126790
     4        on top of https://bugs.webkit.org/show_bug.cgi?id=126932.
     5
     6        Not reviewed.
     7
     8        * llint/LowLevelInterpreter.asm:
     9        - the 2 patches implemented the same change in callToJavaScriptPrologue()
     10          and callToJavaScriptEpilogue(), but svn merged the changes without
     11          reporting a conflict. The result is a redundant push of lr and pop of
     12          cfr. This is now fixed.
     13
    1142014-01-13  Mark Lam  <mark.lam@apple.com>
    215
  • branches/jsCStack/Source/JavaScriptCore/llint/LowLevelInterpreter.asm

    r161927 r161942  
    315315    elsif C_LOOP or ARM or ARMv7 or ARMv7_TRADITIONAL or MIPS
    316316        push lr
    317         push lr
    318317        push cfr
    319318    end
     
    332331        popLRAndFP
    333332    elsif C_LOOP or ARM or ARMv7 or ARMv7_TRADITIONAL or MIPS
    334         pop cfr
    335333        pop cfr
    336334        pop lr
Note: See TracChangeset for help on using the changeset viewer.