8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/t.c

19 lines
182 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
#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;
}