Title: [96483] trunk/Source/_javascript_Core
Revision
96483
Author
[email protected]
Date
2011-10-02 23:49:50 -0700 (Sun, 02 Oct 2011)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (96482 => 96483)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-03 02:13:11 UTC (rev 96482)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-03 06:49:50 UTC (rev 96483)
@@ -1,3 +1,17 @@
+2011-10-02  Zoltan Herczeg  <[email protected]>
+
+        [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):
+
 2011-10-02  Filip Pizlo  <[email protected]>
 
         DFG misses some obvious opportunities for common subexpression elimination

Modified: trunk/Source/_javascript_Core/runtime/Structure.h (96482 => 96483)


--- trunk/Source/_javascript_Core/runtime/Structure.h	2011-10-03 02:13:11 UTC (rev 96482)
+++ trunk/Source/_javascript_Core/runtime/Structure.h	2011-10-03 06:49:50 UTC (rev 96483)
@@ -229,7 +229,7 @@
                 materializePropertyMap(globalData);
         }
 
-        signed char transitionCount() const
+        int transitionCount() const
         {
             // Since the number of transitions is always the same as m_offset, we keep the size of Structure down by not storing both.
             return m_offset == noOffset ? 0 : m_offset + 1;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to