diff options
-rw-r--r-- | hash.c | 5 | ||||
-rw-r--r-- | lib.c | 6 | ||||
-rw-r--r-- | linenoise/linenoise.c | 2 | ||||
-rw-r--r-- | sysif.c | 1 | ||||
-rw-r--r-- | unwind.h | 2 | ||||
-rw-r--r-- | utf8.c | 4 |
6 files changed, 16 insertions, 4 deletions
@@ -155,10 +155,13 @@ static u32_t hash_buf(const mem_t *ptr, ucnum size, u32_t seed, int *pcount) switch (size) { case 3: in |= convert(u32_t, tail[2]) << 16; + /* fallthrough */ case 2: in |= convert(u32_t, tail[1]) << 8; + /* fallthrough */ case 1: in |= convert(u32_t, tail[0]); + break; } acc ^= in; @@ -472,8 +475,10 @@ static ucnum hash_hash_op(val obj, int *count, ucnum seed) switch (CHAR_BIT * sizeof (mem_t *)) { case 32: out += coerce(ucnum, h->hops) >> 4; + break; case 64: default: out += coerce(ucnum, h->hops) >> 5; + break; } out += equal_hash(h->userdata, count, seed); @@ -601,6 +601,7 @@ val cdr(val cons) return funcall2(lambda_meth, cons, rcons(one, t)); } } + /* fallthrough */ default: type_mismatch(lit("cdr: ~s is not a cons"), cons, nao); } @@ -1061,6 +1062,7 @@ val nullify(val seq) if (nullify_meth) return funcall1(nullify_meth, seq); } + /* fallthrough */ default: return seq; } @@ -1107,6 +1109,7 @@ again: replace_obj(tailobj, items, t, t); return ptail; } + /* fallthrough */ default: uw_throwf(error_s, lit("cannot append ~s"), deref(ptail), nao); } @@ -4568,8 +4571,10 @@ val int_str(val str, val base) case 'x': case 'X': zerox = 1; wcs += 2; + break; default: octzero = 1; + break; } break; } @@ -10415,6 +10420,7 @@ val empty(val seq) return eq(funcall1(length_meth, seq), zero); return if3(nullify_meth && funcall1(nullify_meth, seq), nil, seq); } + /* fallthrough */ default: type_mismatch(lit("empty: ~s is not a sequence"), seq, nao); } diff --git a/linenoise/linenoise.c b/linenoise/linenoise.c index 75721075..5418aeda 100644 --- a/linenoise/linenoise.c +++ b/linenoise/linenoise.c @@ -2212,8 +2212,8 @@ static int edit(lino_t *l, const wchar_t *prompt) } break; } - /* fallthrough */ l->save_hist_idx = l->history_index; + /* fallthrough */ case CTL('F'): ret = l->len; if (l->mlmode) @@ -895,6 +895,7 @@ static val fcntl_wrap(val fd_in, val cmd_in, val arg_in) if (cmd == F_GETLK) flock_unpack(arg_in, &fl); } + break; default: errno = EINVAL; break; @@ -150,7 +150,7 @@ extern "C" { #endif int jmp_save(struct jmp *); -void jmp_restore(struct jmp *, int); +noreturn void jmp_restore(struct jmp *, int); #ifdef __cplusplus } @@ -90,10 +90,10 @@ size_t utf8_from_buf(wchar_t *wdst, const unsigned char *src, size_t nbytes) wch_min = 0x10000; break; } - /* fallthrough */ #else conversion_error(); #endif + /* fallthrough */ default: if (wdst) *wdst++ = 0xDC00 | ch; @@ -321,10 +321,10 @@ wint_t utf8_decode(utf8_decoder_t *ud, int (*get)(mem_t *ctx), mem_t *ctx) ud->wch_min = 0x10000; break; } - /* fallthrough */ #else conversion_error(); #endif + /* fallthrough */ default: ud->back = ud->tail; return 0xDC00 | ch; |