Title: [261993] trunk/Source/_javascript_Core
Revision
261993
Author
[email protected]
Date
2020-05-21 06:58:04 -0700 (Thu, 21 May 2020)

Log Message

Further non-unified build fixes
https://bugs.webkit.org/show_bug.cgi?id=212195

Reviewed by Adrian Perez de Castro.

* bytecode/InstanceOfStatus.cpp:
* heap/MarkedSpace.cpp:
* runtime/ObjectInitializationScope.cpp:
* runtime/ThrowScope.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (261992 => 261993)


--- trunk/Source/_javascript_Core/ChangeLog	2020-05-21 13:19:31 UTC (rev 261992)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-05-21 13:58:04 UTC (rev 261993)
@@ -1,3 +1,15 @@
+2020-05-21  Paulo Matos  <[email protected]>
+
+        Further non-unified build fixes
+        https://bugs.webkit.org/show_bug.cgi?id=212195
+
+        Reviewed by Adrian Perez de Castro.
+
+        * bytecode/InstanceOfStatus.cpp:
+        * heap/MarkedSpace.cpp:
+        * runtime/ObjectInitializationScope.cpp:
+        * runtime/ThrowScope.cpp:
+
 2020-05-21  Alexey Shvayka  <[email protected]>
 
         Array.prototype.concat is incorrect with objects whose "length" exceeds 2 ** 32 - 1

Modified: trunk/Source/_javascript_Core/bytecode/InstanceOfStatus.cpp (261992 => 261993)


--- trunk/Source/_javascript_Core/bytecode/InstanceOfStatus.cpp	2020-05-21 13:19:31 UTC (rev 261992)
+++ trunk/Source/_javascript_Core/bytecode/InstanceOfStatus.cpp	2020-05-21 13:58:04 UTC (rev 261993)
@@ -28,6 +28,7 @@
 
 #include "ICStatusUtils.h"
 #include "InstanceOfAccessCase.h"
+#include "JSCellInlines.h"
 #include "PolymorphicAccess.h"
 #include "StructureStubInfo.h"
 

Modified: trunk/Source/_javascript_Core/heap/MarkedSpace.cpp (261992 => 261993)


--- trunk/Source/_javascript_Core/heap/MarkedSpace.cpp	2020-05-21 13:19:31 UTC (rev 261992)
+++ trunk/Source/_javascript_Core/heap/MarkedSpace.cpp	2020-05-21 13:58:04 UTC (rev 261993)
@@ -22,6 +22,7 @@
 #include "MarkedSpace.h"
 
 #include "BlockDirectoryInlines.h"
+#include "HeapInlines.h"
 #include "IncrementalSweeper.h"
 #include "MarkedBlockInlines.h"
 #include "MarkedSpaceInlines.h"

Modified: trunk/Source/_javascript_Core/runtime/ObjectInitializationScope.cpp (261992 => 261993)


--- trunk/Source/_javascript_Core/runtime/ObjectInitializationScope.cpp	2020-05-21 13:19:31 UTC (rev 261992)
+++ trunk/Source/_javascript_Core/runtime/ObjectInitializationScope.cpp	2020-05-21 13:58:04 UTC (rev 261993)
@@ -26,6 +26,9 @@
 #include "config.h"
 #include "ObjectInitializationScope.h"
 
+#include "HeapInlines.h"
+#include "JSCJSValueInlines.h"
+#include "JSCellInlines.h"
 #include "JSObject.h"
 #include "Scribble.h"
 

Modified: trunk/Source/_javascript_Core/runtime/ThrowScope.cpp (261992 => 261993)


--- trunk/Source/_javascript_Core/runtime/ThrowScope.cpp	2020-05-21 13:19:31 UTC (rev 261992)
+++ trunk/Source/_javascript_Core/runtime/ThrowScope.cpp	2020-05-21 13:58:04 UTC (rev 261993)
@@ -27,6 +27,7 @@
 #include "ThrowScope.h"
 
 #include "Exception.h"
+#include "JSCJSValueInlines.h"
 #include "VM.h"
 
 namespace JSC {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to