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:
parent
03a1df3799
commit
4fa10b5760
1 changed files with 1 additions and 3 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue