summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-20100827-1.c
blob: d531031991b9d29cabd7056d86b7980640c7e2ba (plain) (blame)
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
31
32
33
34
35
/*
   20100827-1.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

int
foo (char *p)
{
  int h = 0;
  do
    {
      if (*p == '\0')
	break;
      ++h;
      if (p == 0)
	ASSERT (0);
      ++p;
    }
  while (1);
  return h;
}

void
testTortureExecute (void)
{
  if (foo("a") != 1)
    ASSERT (0);
  return;
}