Changeset 96483 in webkit
- Timestamp:
- Oct 2, 2011, 11:49:50 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r96482 r96483 1 2011-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 1 15 2011-10-02 Filip Pizlo <fpizlo@apple.com> 2 16 -
trunk/Source/JavaScriptCore/runtime/Structure.h
r96354 r96483 230 230 } 231 231 232 signed chartransitionCount() const232 int transitionCount() const 233 233 { 234 234 // 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.