Changeset 122409 in webkit


Ignore:
Timestamp:
Jul 11, 2012 7:49:24 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Build fix + remove dead code
https://bugs.webkit.org/show_bug.cgi?id=91039

Patch by Adenilson Cavalcanti <cavalcantii@gmail.com> on 2012-07-11
Reviewed by Filip Pizlo.

An unused variable was breaking compilation (thanks to warnings being treated as errors).

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::emitCall):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r122404 r122409  
     12012-07-11  Adenilson Cavalcanti  <cavalcantii@gmail.com>
     2
     3        Build fix + remove dead code
     4        https://bugs.webkit.org/show_bug.cgi?id=91039
     5
     6        Reviewed by Filip Pizlo.
     7
     8        An unused variable was breaking compilation (thanks to warnings being treated as errors).
     9
     10        * dfg/DFGSpeculativeJIT32_64.cpp:
     11        (JSC::DFG::SpeculativeJIT::emitCall):
     12
    1132012-07-11  Mark Rowe  <mrowe@apple.com>
    214
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp

    r122392 r122409  
    957957void SpeculativeJIT::emitCall(Node& node)
    958958{
    959     P_DFGOperation_E slowCallFunction;
    960 
    961     if (node.op() == Call)
    962         slowCallFunction = operationLinkCall;
    963     else {
     959
     960    if (node.op() != Call)
    964961        ASSERT(node.op() == Construct);
    965         slowCallFunction = operationLinkConstruct;
    966     }
    967962
    968963    // For constructors, the this argument is not passed but we have to make space
Note: See TracChangeset for help on using the changeset viewer.