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

omit (a, b)
    char a;
    char *b;
{
  char x;
  int i;
  x = *b;
  b[1] = x;
  foo ((int)x);
  return x + 1;
}