blob: 09af22d27619daa4807396e3c968927709ece72f (
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
60
61
62
63
64
65
66
67
68
69
|
/*
961206-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
// TODO: Enable when sdcc supports long long in these ports!
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
int
sub1 (unsigned long long i)
{
if (i < 0x80000000)
return 1;
else
return 0;
}
int
sub2 (unsigned long long i)
{
if (i <= 0x7FFFFFFF)
return 1;
else
return 0;
}
int
sub3 (unsigned long long i)
{
if (i >= 0x80000000)
return 0;
else
return 1;
}
int
sub4 (unsigned long long i)
{
if (i > 0x7FFFFFFF)
return 0;
else
return 1;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
if (sub1 (0x80000000ULL))
ASSERT (0);
if (sub2 (0x80000000ULL))
ASSERT (0);
if (sub3 (0x80000000ULL))
ASSERT (0);
if (sub4 (0x80000000ULL))
ASSERT (0);
return;
#endif
}
|