Changeset 50608 in webkit for trunk/JavaScriptCore/pcre


Ignore:
Timestamp:
Nov 6, 2009, 3:33:17 PM (16 years ago)
Author:
[email protected]
Message:

Rolled back in r50590 with Windows build hopefully fixed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/pcre_exec.cpp

    r46118 r50608  
    21652165HistogramTimeLogger::HistogramTimeLogger(const JSRegExp* re)
    21662166    : m_re(re)
    2167     , m_startTime(getCurrentUTCTimeWithMicroseconds())
     2167    , m_startTime(currentTimeMS())
    21682168{
    21692169}
     
    21722172{
    21732173    static Histogram histogram;
    2174     histogram.add(m_re, getCurrentUTCTimeWithMicroseconds() - m_startTime);
     2174    histogram.add(m_re, currentTimeMS() - m_startTime);
    21752175}
    21762176
Note: See TracChangeset for help on using the changeset viewer.