aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/memtst.c
blob: a8b054a84d800086d97193578821675e032e47cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* { dg-add-options stack_size } */

#ifdef STACK_SIZE
#define SIZE STACK_SIZE / 8
#else
#define SIZE 65536
#endif

void
memtst (int *p, int a)
{
  do
    {
      if (p[a] == 1)
	break;
    }
  while (--a);
}

int
main (void)
{
  int a[SIZE];
  int i;
  __builtin_bzero (a, SIZE * 4);
  for (i = 0;  i < 100;  i++)
    {
      memtst (a, SIZE);
    }
}