blob: e933b885410b8397031f06377aaf3f93413ac453 (
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
|
/*
20000402-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <limits.h>
// TODO: Enable when sdcc supports long long constants!
/*#if ULONG_LONG_MAX != 18446744073709551615ull && ULONG_MAX != 18446744073709551615ull
void
testTortureExecute (void) { return; }
#else
#if ULONG_MAX != 18446744073709551615ull
typedef unsigned long long ull;
#else
typedef unsigned long ull;
#endif
#include <stdio.h>
void checkit(int);*/
void
testTortureExecute (void) {
/*const ull a = 0x1400000000ULL;
const ull b = 0x80000000ULL;
const ull c = a/b;
const ull d = 0x1400000000ULL / 0x80000000ULL;
checkit ((int) c);
checkit ((int) d);
return;*/
}
/*void checkit (int a)
{
if (a != 40)
ASSERT (0);
}
#endif*/
|