Title: [122423] trunk/Source/_javascript_Core
- Revision
- 122423
- Author
- [email protected]
- Date
- 2012-07-12 00:53:08 -0700 (Thu, 12 Jul 2012)
Log Message
Remove dead code after r122392.
https://bugs.webkit.org/show_bug.cgi?id=91049
Reviewed by Filip Pizlo.
* dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::emitCall):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (122422 => 122423)
--- trunk/Source/_javascript_Core/ChangeLog 2012-07-12 07:31:14 UTC (rev 122422)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-07-12 07:53:08 UTC (rev 122423)
@@ -1,3 +1,13 @@
+2012-07-12 Csaba Osztrogonác <[email protected]>
+
+ Remove dead code after r122392.
+ https://bugs.webkit.org/show_bug.cgi?id=91049
+
+ Reviewed by Filip Pizlo.
+
+ * dfg/DFGSpeculativeJIT64.cpp:
+ (JSC::DFG::SpeculativeJIT::emitCall):
+
2012-07-11 Adenilson Cavalcanti <[email protected]>
Build fix + remove dead code
Modified: trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT64.cpp (122422 => 122423)
--- trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT64.cpp 2012-07-12 07:31:14 UTC (rev 122422)
+++ trunk/Source/_javascript_Core/dfg/DFGSpeculativeJIT64.cpp 2012-07-12 07:53:08 UTC (rev 122423)
@@ -953,14 +953,8 @@
void SpeculativeJIT::emitCall(Node& node)
{
- P_DFGOperation_E slowCallFunction;
-
- if (node.op() == Call)
- slowCallFunction = operationLinkCall;
- else {
+ if (node.op() != Call)
ASSERT(node.op() == Construct);
- slowCallFunction = operationLinkConstruct;
- }
// For constructors, the this argument is not passed but we have to make space
// for it.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes