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

#include <testfwk.h>

#ifdef __SDCC
#pragma std_c99
#endif

#include <string.h>

/* PR middle-end/77718 */

#if !defined(__SDCC_pdk14) // Lack of memory
char a[64];

int
foo (void)
{
  return memcmp ("bbbbbb", a, 6);
}

int
bar (void)
{
  return memcmp (a, "bbbbbb", 6);
}
#endif

void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) // Lack of memory
  memset (a, 'a', sizeof (a));
  if (((foo () < 0) ^ ('a' > 'b'))
      || ((bar () < 0) ^ ('a' < 'b')))
    ASSERT (0);
  return;
#endif
}