Title: [152206] trunk/Source/_javascript_Core
Revision
152206
Author
[email protected]
Date
2013-06-28 23:02:59 -0700 (Fri, 28 Jun 2013)

Log Message

Un-crashify JSC tests on debug bots after Anders had his way with StringImpl.

* llint/LLIntData.cpp:
(JSC::LLInt::Data::performAssertions):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (152205 => 152206)


--- trunk/Source/_javascript_Core/ChangeLog	2013-06-29 05:53:23 UTC (rev 152205)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-06-29 06:02:59 UTC (rev 152206)
@@ -1,3 +1,10 @@
+2013-06-28  Andreas Kling  <[email protected]>
+
+        Un-crashify JSC tests on debug bots after Anders had his way with StringImpl.
+
+        * llint/LLIntData.cpp:
+        (JSC::LLInt::Data::performAssertions):
+
 2013-06-28  Anders Carlsson  <[email protected]>
 
         Remove String::deprecatedCharactersWithNullTermination() and related code

Modified: trunk/Source/_javascript_Core/llint/LLIntData.cpp (152205 => 152206)


--- trunk/Source/_javascript_Core/llint/LLIntData.cpp	2013-06-29 05:53:23 UTC (rev 152205)
+++ trunk/Source/_javascript_Core/llint/LLIntData.cpp	2013-06-29 06:02:59 UTC (rev 152206)
@@ -120,7 +120,7 @@
     ASSERT(bitwise_cast<int**>(&testVector)[0] == testVector.begin());
 #endif
 
-    ASSERT(StringImpl::s_hashFlag8BitBuffer == 64);
+    ASSERT(StringImpl::s_hashFlag8BitBuffer == 32);
 }
 #if COMPILER(CLANG)
 #pragma clang diagnostic pop
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to