Pacify "statement not reached" in value_cmp

Problem found by Oracle Developer Studio 12.6.
* src/fns.c (value_cmp): Omit unnecessary goto.
This commit is contained in:
Paul Eggert 2025-04-19 11:58:34 -07:00
parent 03a1df3799
commit 4fa10b5760

View file

@ -3113,9 +3113,7 @@ value_cmp (Lisp_Object a, Lisp_Object b, int maxdepth)
}
if (NILP (b))
return 1;
else
goto type_mismatch;
goto tail_recurse;
goto type_mismatch;
case Lisp_Vectorlike:
if (VECTORLIKEP (b))