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

foo (a, p)
     char a;
     int *p;
{
  int b = a;
  *p = b;
  a = (char) a;
  if (a)
    return b;
  else
    return b + 1;
}