Title: [284531] trunk/Source/_javascript_Core
Revision
284531
Author
commit-qu...@webkit.org
Date
2021-10-20 07:49:25 -0700 (Wed, 20 Oct 2021)

Log Message

Suppress a -Wreturn-type warning
https://bugs.webkit.org/show_bug.cgi?id=229681
<rdar://81603387>

Unreviewed.

Patch by Michael Catanzaro <mcatanz...@gnome.org> on 2021-10-20

* wasm/WasmFormat.h:
(JSC::Wasm::typeToString):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (284530 => 284531)


--- trunk/Source/_javascript_Core/ChangeLog	2021-10-20 13:52:56 UTC (rev 284530)
+++ trunk/Source/_javascript_Core/ChangeLog	2021-10-20 14:49:25 UTC (rev 284531)
@@ -1,3 +1,14 @@
+2021-10-20  Michael Catanzaro  <mcatanz...@gnome.org>
+
+        Suppress a -Wreturn-type warning
+        https://bugs.webkit.org/show_bug.cgi?id=229681
+        <rdar://81603387>
+
+        Unreviewed.
+
+        * wasm/WasmFormat.h:
+        (JSC::Wasm::typeToString):
+
 2021-10-19  Tadeu Zagallo  <tzaga...@apple.com>
 
         Address post-landing feedback to wasm exceptions

Modified: trunk/Source/_javascript_Core/wasm/WasmFormat.h (284530 => 284531)


--- trunk/Source/_javascript_Core/wasm/WasmFormat.h	2021-10-20 13:52:56 UTC (rev 284530)
+++ trunk/Source/_javascript_Core/wasm/WasmFormat.h	2021-10-20 14:49:25 UTC (rev 284531)
@@ -90,6 +90,8 @@
     }
 
 #undef TYPE_CASE
+
+    RELEASE_ASSERT_NOT_REACHED();
 }
 
 inline bool isSubtype(Type sub, Type parent)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to