8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/memtst.c
Jeffrey A Law a00c936aaa memtst.c: Reduce size of array when STACK_SIZE is defined.
* gcc.c-torture/unsorted/memtst.c: Reduce size of array when
        STACK_SIZE is defined.
        * gcc.c-torture/unsorted/stuct.c: Similarly.
Makes targets with 16bit address spaces happy.

From-SVN: r21900
1998-08-21 17:30:36 -06:00

27 lines
293 B
C

#ifdef STACK_SIZE
#define SIZE STACK_SIZE / 8
#else
#define SIZE 65536
#endif
memtst (int *p, int a)
{
do
{
if (p[a] == 1)
break;
}
while (--a);
}
main ()
{
int a[SIZE];
int i;
bzero (a, SIZE * 4);
for (i = 0; i < 100; i++)
{
memtst (a, SIZE);
}
}