Ignore:
Timestamp:
Aug 20, 2009, 4:05:03 PM (16 years ago)
Author:
[email protected]
Message:

EGRESSION: significant slowdown on Celtic Kane "AJAX declaration" subtest
https://bugs.webkit.org/show_bug.cgi?id=28332

Reviewed by Geoff Garen

Follow up style fixes that were missed in review.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/Structure.cpp

    r47601 r47605  
    831831{
    832832    if (m_usingSingleTransitionSlot) {
    833         return m_transitions.singleTransition &&
    834             m_transitions.singleTransition->m_nameInPrevious.get() == rep &&
    835             m_transitions.singleTransition->m_attributesInPrevious == attributes;
     833        return m_transitions.singleTransition
     834            && m_transitions.singleTransition->m_nameInPrevious == rep
     835            && m_transitions.singleTransition->m_attributesInPrevious == attributes;
    836836    }
    837837    return m_transitions.table->hasTransition(make_pair(rep, attributes));
Note: See TracChangeset for help on using the changeset viewer.