gcc version 11.0.0
20201025 (experimental) warns that
src/sort.c:1655:1: warning: function might be candidate for attribute \
'pure' if it is known to return normally [-Wsuggest-attribute=pure]
* src/sort.c (limfield): Mark as pure.
/* Return the limit of (a pointer to the first character after) the field
in LINE specified by KEY. */
-static char *
+static char * _GL_ATTRIBUTE_PURE
limfield (struct line const *line, struct keyfield const *key)
{
char *ptr = line->text, *lim = ptr + line->length - 1;