Title: [281738] trunk/Source/_javascript_Core
Revision
281738
Author
[email protected]
Date
2021-08-29 02:07:16 -0700 (Sun, 29 Aug 2021)

Log Message

Unreviewed. Remove the build warning below since r281615.
warning: control reaches end of non-void function [-Wreturn-type]

* bytecode/PutByStatus.cpp:
(JSC::PutByStatus::makesCalls const):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (281737 => 281738)


--- trunk/Source/_javascript_Core/ChangeLog	2021-08-29 01:48:21 UTC (rev 281737)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-08-29 09:07:16 UTC (rev 281738)
@@ -1,3 +1,11 @@
+2021-08-29  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the build warning below since r281615.
+        warning: control reaches end of non-void function [-Wreturn-type]
+
+        * bytecode/PutByStatus.cpp:
+        (JSC::PutByStatus::makesCalls const):
+
 2021-08-28  Cameron McCormack  <[email protected]>
 
         Miscellaneous typo fixes

Modified: trunk/Source/_javascript_Core/bytecode/PutByStatus.cpp (281737 => 281738)


--- trunk/Source/_javascript_Core/bytecode/PutByStatus.cpp	2021-08-29 01:48:21 UTC (rev 281737)
+++ trunk/Source/_javascript_Core/bytecode/PutByStatus.cpp	2021-08-29 09:07:16 UTC (rev 281738)
@@ -424,6 +424,8 @@
         }
         return false;
     }
+    default:
+        RELEASE_ASSERT_NOT_REACHED();
     }
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to