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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

static void *self(void *p){ return p; }

int
f()
{
  struct { int i; } s, *sp;
  int *ip = &s.i;

  s.i = 1;
  sp = self(&s);
  
  *ip = 0;
  return sp->i+1;
}

void
testTortureExecute (void)
{
  if (f () != 1)
    ASSERT (0);
  else
    return;
}