1/*  PR tree-optimization/12899  */
2
3void
4bb_getopt_ulflags (char *s)
5{
6  for (;;)
7    if (s[1])
8      do
9	s++;
10      while (*s);
11}
12