Title: [257719] trunk/Source/_javascript_Core
- Revision
- 257719
- Author
- [email protected]
- Date
- 2020-03-02 10:53:39 -0800 (Mon, 02 Mar 2020)
Log Message
Unreviewed, fix wrong assertion
https://bugs.webkit.org/show_bug.cgi?id=208404
<rdar://problem/59956592>
* runtime/CachedTypes.cpp:
(JSC::CachedUniquedStringImplBase::decode const):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (257718 => 257719)
--- trunk/Source/_javascript_Core/ChangeLog 2020-03-02 18:00:01 UTC (rev 257718)
+++ trunk/Source/_javascript_Core/ChangeLog 2020-03-02 18:53:39 UTC (rev 257719)
@@ -1,3 +1,12 @@
+2020-03-02 Yusuke Suzuki <[email protected]>
+
+ Unreviewed, fix wrong assertion
+ https://bugs.webkit.org/show_bug.cgi?id=208404
+ <rdar://problem/59956592>
+
+ * runtime/CachedTypes.cpp:
+ (JSC::CachedUniquedStringImplBase::decode const):
+
2020-03-01 Charles Turner <[email protected]>
undefined reference to `JSC::ExecutableBase::hasJITCodeForCall() const'
Modified: trunk/Source/_javascript_Core/runtime/CachedTypes.cpp (257718 => 257719)
--- trunk/Source/_javascript_Core/runtime/CachedTypes.cpp 2020-03-02 18:00:01 UTC (rev 257718)
+++ trunk/Source/_javascript_Core/runtime/CachedTypes.cpp 2020-03-02 18:53:39 UTC (rev 257719)
@@ -752,9 +752,9 @@
StringImpl* impl = str.releaseImpl().get();
ASSERT(impl->isSymbol());
if (m_isWellKnownSymbol)
+ ASSERT(!static_cast<SymbolImpl*>(impl)->isPrivate());
+ else
ASSERT(static_cast<SymbolImpl*>(impl)->isPrivate());
- else
- ASSERT(!static_cast<SymbolImpl*>(impl)->isPrivate());
return static_cast<UniquedStringImpl*>(impl);
};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes