aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/mword1.c
blob: 690703eb8bfd055513bf944a27492426407d8def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int
foo (a, b)
int *a,  *b;
{
  int x;
  *a = (*b + 1);
  x = *b;
  if ((int) x)
    return 1;
  else
    return 0;
}