Title: [238987] releases/WebKitGTK/webkit-2.22/Source/_javascript_Core
Revision
238987
Author
[email protected]
Date
2018-12-07 16:25:40 -0800 (Fri, 07 Dec 2018)

Log Message

Revert "[GTK] Cannot make debug builds of JSC using release 2.22.3"

This reverts commit 4f5957964086375c1ada9728c533e7beb4ea3c86.

This was needed due to an error backporting the previous commit, which I am about to re-backport without conflicts.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/ChangeLog (238986 => 238987)


--- releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/ChangeLog	2018-12-08 00:25:37 UTC (rev 238986)
+++ releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/ChangeLog	2018-12-08 00:25:40 UTC (rev 238987)
@@ -228,19 +228,6 @@
         * jit/JITOperations.cpp:
         * jit/JITOperations.h:
 
-2018-11-04  Adrian Perez de Castro  <[email protected]>
-
-        [GTK] Cannot make debug builds of JSC using release 2.22.3
-        https://bugs.webkit.org/show_bug.cgi?id=191233
-
-        Unreviewed build fix.
-
-        * bytecompiler/BytecodeGenerator.cpp:
-        (JSC::BytecodeGenerator::emitGetByVal):
-        Use context.asStructureForInContext() instead of explicit cast and
-        remove the unneeded assertion, which is already done in the helper
-        function.
-
 2018-10-26  Mark Lam  <[email protected]>
 
         Fix missing edge cases with JSGlobalObjects having a bad time.

Modified: releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp (238986 => 238987)


--- releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp	2018-12-08 00:25:37 UTC (rev 238986)
+++ releases/WebKitGTK/webkit-2.22/Source/_javascript_Core/bytecompiler/BytecodeGenerator.cpp	2018-12-08 00:25:40 UTC (rev 238987)
@@ -2918,7 +2918,8 @@
             break;
         }
 
-        StructureForInContext& structureContext = context.asStructureForInContext();
+        ASSERT(context.type() == ForInContext::StructureForInContextType);
+        StructureForInContext& structureContext = static_cast<StructureForInContext&>(context);
         UnlinkedValueProfile profile = ""
         instructions().append(kill(dst));
         instructions().append(base->index());
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to