blob: 2bf2374befdf875614de35ce8e93867d40d069f6 (
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
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
pr61637.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR rtl-optimization/61673 */
char e;
void
bar (char x)
{
if (x != 0x54 && x != (char) 0x87)
ASSERT (0);
}
void
foo (const char *x)
{
char d = x[0];
int c = d;
if ((c >= 0 && c <= 0x7f) == 0)
e = d;
bar (d);
}
void
baz (const char *x)
{
char d = x[0];
int c = d;
if ((c >= 0 && c <= 0x7f) == 0)
e = d;
}
void
testTortureExecute (void)
{
const char c[] = { 0x54, 0x87 };
e = 0x21;
foo (c);
if (e != 0x21)
ASSERT (0);
foo (c + 1);
if (e != (char) 0x87)
ASSERT (0);
e = 0x21;
baz (c);
if (e != 0x21)
ASSERT (0);
baz (c + 1);
if (e != (char) 0x87)
ASSERT (0);
}
|