Title: [179898] trunk/Source/_javascript_Core
Revision
179898
Author
[email protected]
Date
2015-02-10 16:06:03 -0800 (Tue, 10 Feb 2015)

Log Message

Unreviewed, fix build.

* jit/CCallHelpers.h:
(JSC::CCallHelpers::setupArgumentsWithExecState):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (179897 => 179898)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-11 00:05:05 UTC (rev 179897)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-11 00:06:03 UTC (rev 179898)
@@ -1,5 +1,12 @@
 2015-02-10  Filip Pizlo  <[email protected]>
 
+        Unreviewed, fix build.
+
+        * jit/CCallHelpers.h:
+        (JSC::CCallHelpers::setupArgumentsWithExecState):
+
+2015-02-10  Filip Pizlo  <[email protected]>
+
         op_call_varargs should only load the length once
         https://bugs.webkit.org/show_bug.cgi?id=141440
         rdar://problem/19761683

Modified: trunk/Source/_javascript_Core/jit/CCallHelpers.h (179897 => 179898)


--- trunk/Source/_javascript_Core/jit/CCallHelpers.h	2015-02-11 00:05:05 UTC (rev 179897)
+++ trunk/Source/_javascript_Core/jit/CCallHelpers.h	2015-02-11 00:06:03 UTC (rev 179898)
@@ -1394,6 +1394,7 @@
 
     ALWAYS_INLINE void setupArgumentsWithExecState(GPRReg arg1, GPRReg arg2, GPRReg arg3, TrustedImm32 arg4, GPRReg arg5)
     {
+        poke(arg5, POKE_ARGUMENT_OFFSET + 1);
         poke(arg4, POKE_ARGUMENT_OFFSET);
         setupArgumentsWithExecState(arg1, arg2, arg3);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to