aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/pyr.c
blob: d25b2a99aa5d1dfb184f573534dd2dddf25c58a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
foo (char *a)
{
  char b;
  int c;
  b = *a;
  c = b;
  if (c < 0)
    return 1;
  a[1] = b;

}