Title: [154388] trunk/Source/_javascript_Core
- Revision
- 154388
- Author
- [email protected]
- Date
- 2013-08-21 09:32:16 -0700 (Wed, 21 Aug 2013)
Log Message
<https://webkit.org/b/120106> Fix V_DFGOperation_EJPP signature in DFG.
Patch by Julien Brianceau <[email protected]> on 2013-08-21
Reviewed by Geoffrey Garen.
* dfg/DFGOperations.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (154387 => 154388)
--- trunk/Source/_javascript_Core/ChangeLog 2013-08-21 16:11:10 UTC (rev 154387)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-08-21 16:32:16 UTC (rev 154388)
@@ -1,3 +1,11 @@
+2013-08-21 Julien Brianceau <[email protected]>
+
+ <https://webkit.org/b/120106> Fix V_DFGOperation_EJPP signature in DFG.
+
+ Reviewed by Geoffrey Garen.
+
+ * dfg/DFGOperations.h:
+
2013-08-20 Gavin Barraclough <[email protected]>
https://bugs.webkit.org/show_bug.cgi?id=120093
Modified: trunk/Source/_javascript_Core/dfg/DFGOperations.h (154387 => 154388)
--- trunk/Source/_javascript_Core/dfg/DFGOperations.h 2013-08-21 16:11:10 UTC (rev 154387)
+++ trunk/Source/_javascript_Core/dfg/DFGOperations.h 2013-08-21 16:32:16 UTC (rev 154388)
@@ -109,7 +109,7 @@
typedef void DFG_OPERATION (*V_DFGOperation_ECC)(ExecState*, JSCell*, JSCell*);
typedef void DFG_OPERATION (*V_DFGOperation_EJCI)(ExecState*, EncodedJSValue, JSCell*, StringImpl*);
typedef void DFG_OPERATION (*V_DFGOperation_EJJJ)(ExecState*, EncodedJSValue, EncodedJSValue, EncodedJSValue);
-typedef void DFG_OPERATION (*V_DFGOperation_EJPP)(ExecState*, EncodedJSValue, EncodedJSValue, void*);
+typedef void DFG_OPERATION (*V_DFGOperation_EJPP)(ExecState*, EncodedJSValue, void*, void*);
typedef void DFG_OPERATION (*V_DFGOperation_EPZJ)(ExecState*, void*, int32_t, EncodedJSValue);
typedef void DFG_OPERATION (*V_DFGOperation_W)(WatchpointSet*);
typedef char* DFG_OPERATION (*P_DFGOperation_E)(ExecState*);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes