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

#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;
}