aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pyr.c
blob: 8aef0682b52ee0ffd9ebd9cca4a28d2c68c54d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-additional-options "-std=gnu89" } */

foo (char *a)
{
  char b;
  int c;
  b = *a;
  c = b;
  if (c < 0)
    return 1;
  a[1] = b;

}