Ignore:
Timestamp:
Aug 12, 2010, 2:20:06 PM (15 years ago)
Author:
[email protected]
Message:

Revert changes to ALWAYS_INLINEness of a couple of functions in UString.
This appears to have degraded performance.

Reviewed by Sam Weinig

  • runtime/UString.cpp:

(JSC::UString::ascii):

  • runtime/UString.h:

(JSC::UString::length):
(JSC::UString::isEmpty):
(JSC::UString::~UString):

File:
1 edited

Legend:

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

    r65186 r65266  
    198198    asciiBuffer = new char[neededSize];
    199199
    200     const UChar* p = characters(); // Don't roll me out!
     200    const UChar* p = characters();
    201201    char* q = asciiBuffer;
    202202    const UChar* limit = p + len;
Note: See TracChangeset for help on using the changeset viewer.