Title: [158916] trunk/Source/_javascript_Core
Revision
158916
Author
[email protected]
Date
2013-11-08 03:26:24 -0800 (Fri, 08 Nov 2013)

Log Message

[mips] Fix typo (introduced in r158751).
https://bugs.webkit.org/show_bug.cgi?id=124033.

Patch by Julien Brianceau <[email protected]> on 2013-11-08
Reviewed by Csaba Osztrogonác.

* jit/ThunkGenerators.cpp:
(JSC::callToJavaScript):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (158915 => 158916)


--- trunk/Source/_javascript_Core/ChangeLog	2013-11-08 11:22:04 UTC (rev 158915)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-11-08 11:26:24 UTC (rev 158916)
@@ -1,5 +1,15 @@
 2013-11-08  Julien Brianceau  <[email protected]>
 
+        [mips] Fix typo (introduced in r158751).
+        https://bugs.webkit.org/show_bug.cgi?id=124033.
+
+        Reviewed by Csaba Osztrogonác.
+
+        * jit/ThunkGenerators.cpp:
+        (JSC::callToJavaScript):
+
+2013-11-08  Julien Brianceau  <[email protected]>
+
         [arm] Use specific PatchableJump implementation for CPU(ARM_TRADITIONAL).
         https://bugs.webkit.org/show_bug.cgi?id=123891
 

Modified: trunk/Source/_javascript_Core/jit/ThunkGenerators.cpp (158915 => 158916)


--- trunk/Source/_javascript_Core/jit/ThunkGenerators.cpp	2013-11-08 11:22:04 UTC (rev 158915)
+++ trunk/Source/_javascript_Core/jit/ThunkGenerators.cpp	2013-11-08 11:26:24 UTC (rev 158916)
@@ -267,7 +267,7 @@
     jit.storePtr(MIPSRegisters::s1, CCallHelpers::Address(MIPSRegisters::sp, PRESERVED_S1_OFFSET));
     jit.storePtr(MIPSRegisters::s0, CCallHelpers::Address(MIPSRegisters::sp, PRESERVED_S0_OFFSET));
 #if WTF_MIPS_PIC
-    jit.storePtr(MIPSRegisters::gp), CCallHelpers::Address(MIPSRegisters::sp, PRESERVED_GP_OFFSET));
+    jit.storePtr(MIPSRegisters::gp, CCallHelpers::Address(MIPSRegisters::sp, PRESERVED_GP_OFFSET));
 #endif
     jit.move(MIPSRegisters::fp, GPRInfo::nonArgGPR0);
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to