summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-991023-1.c
blob: 5cba35e93cfd965777d4caa7ebac89dfecc7fb30 (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
/*
   991023-1.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

int blah;
foo()
{
  int i;

  for (i=0 ; i< 7 ; i++)
    {
      if (i == 7 - 1)
	blah = 0xfcc;
      else
	blah = 0xfee;
    }
  return blah;
}


void
testTortureExecute (void)
{
  if (foo () != 0xfcc)
    ASSERT (0);
  return;
}