aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/t.c
blob: 48095e7c38bce54321b6caf8273adb2cb264aea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#define B 95

foo (a, b, p)
     unsigned a, b;
     int *p;
{
  p[1] = a % B;
  p[0] = a / B;
}

bar (a, b, p)
     unsigned a, b;
     int *p;
{
  p[0] = a / B;
  p[1] = a % B;
}