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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

#if 0 // TODO: Enable when variable-length arrays are supported!
#include <string.h>

int
sub1 (int i, int j)
{
  typedef int c[i+2];
  int x[10], y[10];

  if (j == 2)
    {
      memcpy (x, y, 10 * sizeof (int));
      return sizeof (c);
    }
  else
    return sizeof (c) * 3;
}
#endif

void
testTortureExecute (void)
{
#if 0
  if (sub1 (20, 3) != 66 * sizeof (int))
    ASSERT (0);

  return;
#endif
}