blob: 15d5530642785b830dd2310aecc6697fba09a54e (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/*
20000605-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
typedef struct _RenderInfo RenderInfo;
struct _RenderInfo
{
int y;
float scaley;
int src_y;
};
static void bar(void) { }
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
static int
render_image_rgb_a (RenderInfo * info)
{
int y, ye;
float error;
float step;
y = info->y;
ye = 256;
step = 1.0 / info->scaley;
error = y * step;
error -= ((int) error) - step;
for (; y < ye; y++) {
if (error >= 1.0) {
info->src_y += (int) error;
error -= (int) error;
bar();
}
error += step;
}
return info->src_y;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
RenderInfo info;
info.y = 0;
info.src_y = 0;
info.scaley = 1.0;
if (render_image_rgb_a(&info) != 256)
ASSERT (0);
return;
#endif
}
|