* src/cut.c (cut_file):
* src/nl.c (nl_file): Pacify GCC Bug#109613 in a better way, by
narrowing the coverage of the ‘assume’ so that bugs in the
no-longer-covered part are not masked.
{
have_read_stdin = true;
stream = stdin;
+ assume (stream); /* Pacify GCC bug#109613. */
}
else
{
}
}
- assume (stream);
-
fadvise (stream, FADVISE_SEQUENTIAL);
cut_stream (stream);
{
have_read_stdin = true;
stream = stdin;
+ assume (stream); /* Pacify GCC bug#109613. */
}
else
{
}
}
- assume (stream);
-
fadvise (stream, FADVISE_SEQUENTIAL);
process_file (stream);