blob: a9d1d992e4852e1c178bb3b332b678321e63a252 (
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
|
/*
941015-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
int
foo1 (long long value)
{
register const long long constant = 0xc000000080000000LL;
if (value < constant)
return 1;
else
return 2;
}
int
foo2 (unsigned long long value)
{
register const unsigned long long constant = 0xc000000080000000LL;
if (value < constant)
return 1;
else
return 2;
}
void
testTortureExecute (void)
{
#if !defined(__SDCC_mcs51)
unsigned long long value = 0xc000000000000001LL;
int x, y;
x = foo1 (value);
y = foo2 (value);
if (x != y || x != 1)
ASSERT (0);
return;
#endif
}
|