summaryrefslogtreecommitdiff
path: root/support/regression/tests/bug1757671.c
blob: f4ab1718fff0a82e996cd16349e874dfeb65cc30 (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
/*
   bug1757671.c
 */

#include <testfwk.h>
#include <stdint.h>

#ifndef __SDCC_pdk14 // Lack of memory
struct c
{
	float r;
};

void clamp(struct c *l)
{
	if(l->r > 240.0f)
		l->r = 240.0f;
	if(l->r < 1.0f)
		l->r = 1.0f;
}

//char cmplong(char x, char y)
char cmplong(int32_t x, int32_t y)
{
	if (x < y)
		return 1;
	return 0;
}
#endif

void testBug(void)
{
#ifndef __SDCC_pdk14 // Lack of memory
//	volatile char x = 0xBF;//800000; //-1.0
//	volatile char y = 0x3F;//800000; //+1.0
//	volatile char z = 0x43;//700000; //+240.0
	volatile int32_t x = 0xBF800000; //-1.0
	volatile int32_t y = 0x3F800000; //+1.0
	volatile int32_t z = 0x43700000; //+240.0
	struct c val = { -1.0 };
	clamp(&val);
	ASSERT (val.r == 1.0);
	ASSERT (x <= y);
	ASSERT (cmplong(x, y));
	ASSERT (x < z);
	ASSERT (cmplong(x, z));
#endif
}