blob: 7444efc61e454e3071e3502a4cfe3b7ef56ec330 (
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
|
/*
990117-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 93
#endif
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
int
foo (int x, int y, int i, int j)
{
double tmp1 = ((double) x / y);
double tmp2 = ((double) i / j);
return tmp1 < tmp2;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lack of memory
if (foo (2, 24, 3, 4) == 0)
ASSERT (0);
return;
#endif
}
|