blob: 37d50deed4462303392838e33f4af187169ea4f4 (
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
|
/*
pr40057.c from the execute part of the gcc torture tests.
*/
#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)
/* PR middle-end/40057 */
int
foo (unsigned long long x)
{
unsigned long long y = (x >> 31ULL) & 1ULL;
if (y == 0ULL)
return 0;
return -1;
}
int
bar (long long x)
{
long long y = (x >> 31LL) & 1LL;
if (y == 0LL)
return 0;
return -1;
}
#endif
void
testTortureExecute (void)
{
#ifndef PORT_HOST // Fails on NetBSD
#if !defined(__SDCC_pic14) && !defined(__SDCC_pic16)
if (sizeof (long long) != 8)
return;
if (foo (0x1682a9aaaULL))
ASSERT (0);
if (!foo (0x1882a9aaaULL))
ASSERT (0);
if (bar (0x1682a9aaaLL))
ASSERT (0);
if (!bar (0x1882a9aaaLL))
ASSERT (0);
return;
#endif
#endif
}
|