summaryrefslogtreecommitdiff
path: root/support/regression/tests/gcc-torture-execute-pr27260.c
blob: 6a0688d2358a8645cb335691097fd56c8f306551 (plain)
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
46
47
/*
   pr15262.c from the execute part of the gcc torture tests.
 */

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

/* PR middle-end/27260 */

#include <string.h>

#if !defined (__SDCC_pdk14) // Lack of memory
char buf[65];

void
foo (int x)
{
  memset (buf, x != 2 ? 1 : 0, 64);
}
#endif

void
testTortureExecute (void)
{
#if !defined (__SDCC_pdk14) // Lack of memory
  int i;
  buf[64] = 2;
  for (i = 0; i < 64; i++)
    if (buf[i] != 0)
      ASSERT (0);
  foo (0);
  for (i = 0; i < 64; i++)
    if (buf[i] != 1)
      ASSERT (0);
  foo (2);
  for (i = 0; i < 64; i++)
    if (buf[i] != 0)
      ASSERT (0);
  if (buf[64] != 2)
    ASSERT (0);
  return;
#endif
}