Changeset 229324 in webkit


Ignore:
Timestamp:
Mar 6, 2018 9:38:03 AM (6 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, fix incorrect assertion after r229309
https://bugs.webkit.org/show_bug.cgi?id=182975

  • runtime/TypeProfilerLog.cpp:

(JSC::TypeProfilerLog::TypeProfilerLog):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r229309 r229324  
     12018-03-06  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, fix incorrect assertion after r229309
     4        https://bugs.webkit.org/show_bug.cgi?id=182975
     5
     6        * runtime/TypeProfilerLog.cpp:
     7        (JSC::TypeProfilerLog::TypeProfilerLog):
     8
    192018-03-05  Yusuke Suzuki  <utatane.tea@gmail.com>
    210
  • trunk/Source/JavaScriptCore/runtime/TypeProfilerLog.cpp

    r229309 r229324  
    4747    , m_logEndPtr(m_logStartPtr + m_logSize)
    4848{
    49     ASSERT(!m_logStartPtr);
     49    ASSERT(m_logStartPtr);
    5050}
    5151
Note: See TracChangeset for help on using the changeset viewer.