Title: [208763] trunk/Source/_javascript_Core
- Revision
- 208763
- Author
- [email protected]
- Date
- 2016-11-15 15:42:37 -0800 (Tue, 15 Nov 2016)
Log Message
Unreviewed, remove bogus assertion.
* heap/Heap.cpp:
(JSC::Heap::markToFixpoint):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (208762 => 208763)
--- trunk/Source/_javascript_Core/ChangeLog 2016-11-15 23:32:37 UTC (rev 208762)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-11-15 23:42:37 UTC (rev 208763)
@@ -1,5 +1,12 @@
2016-11-15 Filip Pizlo <[email protected]>
+ Unreviewed, remove bogus assertion.
+
+ * heap/Heap.cpp:
+ (JSC::Heap::markToFixpoint):
+
+2016-11-15 Filip Pizlo <[email protected]>
+
[mac-wk1 debug] ASSERTION FAILED: thisObject->m_propertyTableUnsafe
https://bugs.webkit.org/show_bug.cgi?id=162986
Modified: trunk/Source/_javascript_Core/heap/Heap.cpp (208762 => 208763)
--- trunk/Source/_javascript_Core/heap/Heap.cpp 2016-11-15 23:32:37 UTC (rev 208762)
+++ trunk/Source/_javascript_Core/heap/Heap.cpp 2016-11-15 23:42:37 UTC (rev 208763)
@@ -549,10 +549,8 @@
(m_bytesAllocatedThisCycle - bytesAllocatedThisCycleAtTheBeginning) /
(bytesAllocatedThisCycleAtTheEnd - bytesAllocatedThisCycleAtTheBeginning);
- ASSERT(headroomFullness >= 0);
if (!(headroomFullness >= 0))
headroomFullness = 0;
- ASSERT(headroomFullness <= 1);
if (!(headroomFullness <= 1))
headroomFullness = 1;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes