Title: [277153] trunk/Source/_javascript_Core
- Revision
- 277153
- Author
- [email protected]
- Date
- 2021-05-06 19:13:05 -0700 (Thu, 06 May 2021)
Log Message
Removed the assertion m_numParameters >= 0, it is always true as
m_numParameters is unsigned.
https://bugs.webkit.org/show_bug.cgi?id=225457
Patch by Eleni Maria Stea <[email protected]> on 2021-05-06
Reviewed by Yusuke Suzuki.
* bytecode/CodeBlock.h:
(JSC::CodeBlock::numberOfArgumentValueProfiles):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (277152 => 277153)
--- trunk/Source/_javascript_Core/ChangeLog 2021-05-07 01:56:21 UTC (rev 277152)
+++ trunk/Source/_javascript_Core/ChangeLog 2021-05-07 02:13:05 UTC (rev 277153)
@@ -1,3 +1,14 @@
+2021-05-06 Eleni Maria Stea <[email protected]>
+
+ Removed the assertion m_numParameters >= 0, it is always true as
+ m_numParameters is unsigned.
+ https://bugs.webkit.org/show_bug.cgi?id=225457
+
+ Reviewed by Yusuke Suzuki.
+
+ * bytecode/CodeBlock.h:
+ (JSC::CodeBlock::numberOfArgumentValueProfiles):
+
2021-05-06 Filip Pizlo <[email protected]>
Make some things easier to dataLog in wasm
Modified: trunk/Source/_javascript_Core/bytecode/CodeBlock.h (277152 => 277153)
--- trunk/Source/_javascript_Core/bytecode/CodeBlock.h 2021-05-07 01:56:21 UTC (rev 277152)
+++ trunk/Source/_javascript_Core/bytecode/CodeBlock.h 2021-05-07 02:13:05 UTC (rev 277153)
@@ -497,7 +497,6 @@
unsigned numberOfArgumentValueProfiles()
{
- ASSERT(m_numParameters >= 0);
ASSERT(m_argumentValueProfiles.size() == static_cast<unsigned>(m_numParameters) || !Options::useJIT());
return m_argumentValueProfiles.size();
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes