Changeset 96483 in webkit


Ignore:
Timestamp:
Oct 2, 2011, 11:49:50 PM (14 years ago)
Author:
zherczeg@webkit.org
Message:

[Qt]REGRESSION(r95912): It made sputnik tests flakey
https://bugs.webkit.org/show_bug.cgi?id=68990

Reviewed by Geoffrey Garen.

Changing signed char to int in r96354 solved the
problem. However transitionCount still returns
with a signed char and should be changed to int.

  • runtime/Structure.h:

(JSC::Structure::transitionCount):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r96482 r96483  
     12011-10-02  Zoltan Herczeg  <zherczeg@webkit.org>
     2
     3        [Qt]REGRESSION(r95912): It made sputnik tests flakey
     4        https://bugs.webkit.org/show_bug.cgi?id=68990
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        Changing signed char to int in r96354 solved the
     9        problem. However transitionCount still returns
     10        with a signed char and should be changed to int.
     11
     12        * runtime/Structure.h:
     13        (JSC::Structure::transitionCount):
     14
    1152011-10-02  Filip Pizlo  <fpizlo@apple.com>
    216
  • trunk/Source/JavaScriptCore/runtime/Structure.h

    r96354 r96483  
    230230        }
    231231
    232         signed char transitionCount() const
     232        int transitionCount() const
    233233        {
    234234            // Since the number of transitions is always the same as m_offset, we keep the size of Structure down by not storing both.
Note: See TracChangeset for help on using the changeset viewer.