Changeset 203897 in webkit


Ignore:
Timestamp:
Jul 29, 2016 12:59:29 AM (8 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, ByValInfo is only used in JIT enabled environments
https://bugs.webkit.org/show_bug.cgi?id=158908

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::stronglyVisitStrongReferences):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r203895 r203897  
     12016-07-29  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, ByValInfo is only used in JIT enabled environments
     4        https://bugs.webkit.org/show_bug.cgi?id=158908
     5
     6        * bytecode/CodeBlock.cpp:
     7        (JSC::CodeBlock::stronglyVisitStrongReferences):
     8
    192016-07-28  Yusuke Suzuki  <utatane.tea@gmail.com>
    210
  • trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp

    r203895 r203897  
    31033103        m_objectAllocationProfiles[i].visitAggregate(visitor);
    31043104
     3105#if ENABLE(JIT)
    31053106    for (ByValInfo* byValInfo : m_byValInfos)
    31063107        visitor.append(&byValInfo->cachedSymbol);
     3108#endif
    31073109
    31083110#if ENABLE(DFG_JIT)
Note: See TracChangeset for help on using the changeset viewer.