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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

int x,*p=&x;

void
testTortureExecute (void)
{
  int i=0;
  x=1;
  *p=2;
  if (x != 2)
    ASSERT (0);
  return;
}