blob: 93f1d029f21a8a4a92dee6dc8856e7dad0497635 (
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
|
/*
pr19005.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR target/19005 */
int v, s;
void
bar (int a, int b)
{
unsigned char x = v;
if (!s)
{
if (a != x || b != (unsigned char) (x + 1))
ASSERT (0);
}
else if (a != (unsigned char) (x + 1) || b != x)
ASSERT (0);
s ^= 1;
}
int
foo (int x)
{
unsigned char a = x, b = x + 1;
bar (a, b);
a ^= b; b ^= a; a ^= b;
bar (a, b);
return 0;
}
void
testTortureExecute (void)
{
for (v = -10; v < 266; v++)
foo (v);
return;
}
|