summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-20000706-1.c
blob: c573c45ab07f093761ee41abc55ea7d813ea7528 (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
36
37
38
39
40
41
42
43
44
45
/*
   20000706-1.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

// TODO: Enable once sdcc supports passing of struct as parameter!
#if 0
struct baz {
  int a, b, c, d, e;
};

void bar(struct baz *x, int f, int g, int h, int i, int j)
{
  if (x->a != 1 || x->b != 2 || x->c != 3 || x->d != 4 || x->e != 5 ||
      f != 6 || g != 7 || h != 8 || i != 9 || j != 10)
    ASSERT (0);
}

void foo(struct baz x, char **y)
{
  bar(&x,6,7,8,9,10);
}
#endif

void
testTortureExecute (void)
{
#if 0
  struct baz x;

  x.a = 1;
  x.b = 2;
  x.c = 3;
  x.d = 4;
  x.e = 5;
  foo(x,(char **)0);
  return;
#endif
}