blob: 32915abecc92cdf1f3b207f1f195ca8fc586c033 (
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
40
41
42
43
44
45
46
47
48
49
50
51
|
/*
20031010-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* A reminder to process ops in generate_expr_as_of_bb exactly once. */
#ifndef __SDCC_pdk14 // Lack of memory
long
foo (long ct, long cf, _Bool p1, _Bool p2, _Bool p3)
{
long diff;
diff = ct - cf;
if (p1)
{
if (p2)
{
if (p3)
{
long tmp = ct;
ct = cf;
cf = tmp;
}
diff = ct - cf;
}
return diff;
}
ASSERT (0);
}
#endif
void
testTortureExecute (void)
{
#ifndef __SDCC_pdk14 // Lack of memory
if (foo(2, 3, 1, 1, 1) == 0)
ASSERT (0);
return;
#endif
}
|