GCC 8.3.0 on AIX 7.1.5.0, as before, is not aware that longjmp() does
not return:
./gencode.c:6869:3: error: this statement may fall through
[-Werror=implicit-fallthrough=]
./gencode.c:6874:3: error: this statement may fall through
[-Werror=implicit-fallthrough=]
free(cpy);
longjmp(cstate->top_ctx, 1);
/*NOTREACHED*/
+#ifdef _AIX
+ PCAP_UNREACHABLE
+#endif /* _AIX */
case STOULEN_ERROR:
/* Error already set. */
longjmp(cstate->top_ctx, 1);
/*NOTREACHED*/
+#ifdef _AIX
+ PCAP_UNREACHABLE
+#endif /* _AIX */
default:
/* Should not happen */