Changeset 95854 in webkit


Ignore:
Timestamp:
Sep 23, 2011 1:21:41 PM (13 years ago)
Author:
oliver@apple.com
Message:

PutScopedVar nodes should report that it has a var number
https://bugs.webkit.org/show_bug.cgi?id=68721

Reviewed by Anders Carlsson.

Another assertion fix.

  • dfg/DFGNode.h:

(JSC::DFG::Node::hasVarNumber):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r95851 r95854  
     12011-09-23  Oliver Hunt  <oliver@apple.com>
     2
     3        PutScopedVar nodes should report that it has a var number
     4        https://bugs.webkit.org/show_bug.cgi?id=68721
     5
     6        Reviewed by Anders Carlsson.
     7
     8        Another assertion fix.
     9
     10        * dfg/DFGNode.h:
     11        (JSC::DFG::Node::hasVarNumber):
     12
    1132011-09-23  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/Source/JavaScriptCore/dfg/DFGNode.h

    r95840 r95854  
    552552    bool hasVarNumber()
    553553    {
    554         return op == GetGlobalVar || op == PutGlobalVar || op == GetScopedVar;
     554        return op == GetGlobalVar || op == PutGlobalVar || op == GetScopedVar || op == PutScopedVar;
    555555    }
    556556
Note: See TracChangeset for help on using the changeset viewer.