aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/rel.c
blob: 8774164cd7304732ba780e32552a28b2b5f1f5c3 (plain)
1
2
3
4
5
6
7
8
9
int
foo (int *c, int b)
{
  int a;

  a = *c + b;
  c[1] = a;
  return b;
}