Changeset 37727 in webkit for trunk/JavaScriptCore/VM/Machine.cpp


Ignore:
Timestamp:
Oct 20, 2008, 9:09:14 AM (17 years ago)
Author:
[email protected]
Message:

2008-10-20 Geoffrey Garen <[email protected]>

Reviewed by Darin Adler.


Fixed some recent break-age in bytecode mode.

  • VM/CodeBlock.cpp: (JSC::CodeBlock::printStructureIDs): Fixed up an ASSERT caused by Gavin's last checkin. This is a temporary fix so I can keep on moving. I'll send email about what I think is an underlying problem soon.
  • VM/Machine.cpp: (JSC::Machine::privateExecute): Removed a redundant and sometimes incorrect cast, which started ASSERTing after Darin's last checkin.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/Machine.cpp

    r37714 r37727  
    27152715                    }
    27162716                    ++it;
    2717                     proto = asObject(asObject(proto)->structureID()->prototypeForLookup(callFrame));
     2717                    proto = asObject(proto)->structureID()->prototypeForLookup(callFrame);
    27182718                }
    27192719
Note: See TracChangeset for help on using the changeset viewer.