Title: [240521] trunk/Source/_javascript_Core
Revision
240521
Author
[email protected]
Date
2019-01-25 15:44:27 -0800 (Fri, 25 Jan 2019)

Log Message

Fix Windows build after r240511

* bytecode/UnlinkedFunctionExecutable.cpp:
(JSC::UnlinkedFunctionExecutable::unlinkedCodeBlockFor):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (240520 => 240521)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-25 23:41:30 UTC (rev 240520)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-25 23:44:27 UTC (rev 240521)
@@ -1,3 +1,10 @@
+2019-01-25  Alex Christensen  <[email protected]>
+
+        Fix Windows build after r240511
+
+        * bytecode/UnlinkedFunctionExecutable.cpp:
+        (JSC::UnlinkedFunctionExecutable::unlinkedCodeBlockFor):
+
 2019-01-25  Keith Rollin  <[email protected]>
 
         Update Xcode projects with "Apply Configuration to XCFileLists" build target

Modified: trunk/Source/_javascript_Core/bytecode/UnlinkedFunctionExecutable.cpp (240520 => 240521)


--- trunk/Source/_javascript_Core/bytecode/UnlinkedFunctionExecutable.cpp	2019-01-25 23:41:30 UTC (rev 240520)
+++ trunk/Source/_javascript_Core/bytecode/UnlinkedFunctionExecutable.cpp	2019-01-25 23:44:27 UTC (rev 240521)
@@ -202,6 +202,8 @@
     case CodeForConstruct:
         return m_unlinkedCodeBlockForConstruct.get();
     }
+    ASSERT_NOT_REACHED();
+    return nullptr;
 }
 
 UnlinkedFunctionCodeBlock* UnlinkedFunctionExecutable::unlinkedCodeBlockFor(
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to