Work around GCC bug 106436

* src/tar.c (optloc_eq): Use ‘assume’ to pacify GCC bug.
This commit is contained in:
Paul Eggert
2022-07-25 09:41:49 -07:00
parent fffc6149fd
commit 4e9e55fbf9

View File

@@ -959,6 +959,7 @@ option_set_in_cl (int id)
static int
optloc_eq (struct option_locus *a, struct option_locus *b)
{
assume (a); /* Pacify GCC bug 106436. */
if (a->source != b->source)
return 0;
if (a->source == OPTS_COMMAND_LINE)