aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/mword.c
blob: c782661cb7436c7bff8ee9d09ee60cf61227d8a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* { dg-additional-options "-std=gnu89" } */

int
foo (a, b)
int *a,  *b;
{
  int x, y;
  x++;
  *a = *b;
  y = *b;

  if ((int) x)
    return 1;
  else
    return y;
}

foo1 (p)
     int *p;
{
  p[0] = p[1];
  return p[0];
}

foo2 (p, x)
     int *p;
{
  p[0] = x;
  return p[0];
}