Title: [180270] trunk/Source/_javascript_Core
Revision
180270
Author
msab...@apple.com
Date
2015-02-18 10:23:14 -0800 (Wed, 18 Feb 2015)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180269 => 180270)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-18 18:22:26 UTC (rev 180269)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-18 18:23:14 UTC (rev 180270)
@@ -1,3 +1,12 @@
+2015-02-17  Michael Saboff  <msab...@apple.com>
+
+        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.
+
 2015-02-18  Csaba Osztrogonác  <o...@webkit.org>
 
         URTBF after r180258 to fix Windows build.

Modified: trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm (180269 => 180270)


--- trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm	2015-02-18 18:22:26 UTC (rev 180269)
+++ trunk/Source/_javascript_Core/llint/LowLevelInterpreter.asm	2015-02-18 18:23:14 UTC (rev 180270)
@@ -633,7 +633,7 @@
 .stackHeightOKGetCodeBlock:
     # Stack check slow path returned that the stack was ok.
     # Since they were clobbered, need to get CodeBlock and new sp
-    codeBlockSetter(t1)
+    codeBlockGetter(t1)
     getFrameRegisterSizeForCodeBlock(t1, t0)
     subp cfr, t0, t0
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to