aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/analyzer/gzio-2.c
blob: 855ecc8f73d43b67eebad50ff736d87f13c6d676 (plain)
1
2
3
4
5
6
7
8
9
10
11
void gzseek (long offset, int whence)
{
  if (whence == 2)
    return;
  if (whence == 0)
    offset -= 1;
  if (offset < 0)
    return;
  while (offset > 0) {
  }
}