aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr12899.c
blob: 6bd4724fd746683f9e483f3fc17133c9f9aa758b (plain)
1
2
3
4
5
6
7
8
9
10
11
/*  PR tree-optimization/12899  */

void
bb_getopt_ulflags (char *s)
{
  for (;;)
    if (s[1])
      do
	s++;
      while (*s);
}