Changeset 122423 in webkit


Ignore:
Timestamp:
Jul 12, 2012 12:53:08 AM (12 years ago)
Author:
Csaba Osztrogonác
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):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r122409 r122423  
     12012-07-12  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Remove dead code after r122392.
     4        https://bugs.webkit.org/show_bug.cgi?id=91049
     5
     6        Reviewed by Filip Pizlo.
     7
     8        * dfg/DFGSpeculativeJIT64.cpp:
     9        (JSC::DFG::SpeculativeJIT::emitCall):
     10
    1112012-07-11  Adenilson Cavalcanti  <cavalcantii@gmail.com>
    212
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp

    r122392 r122423  
    954954void SpeculativeJIT::emitCall(Node& node)
    955955{
    956     P_DFGOperation_E slowCallFunction;
    957 
    958     if (node.op() == Call)
    959         slowCallFunction = operationLinkCall;
    960     else {
     956    if (node.op() != Call)
    961957        ASSERT(node.op() == Construct);
    962         slowCallFunction = operationLinkConstruct;
    963     }
    964958
    965959    // For constructors, the this argument is not passed but we have to make space
Note: See TracChangeset for help on using the changeset viewer.