blob: 086e38dae23cf0c1019f18d40ba71d20a1af8712 (
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
|
/*
920721-3.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Bug #2874
static inline int fu (unsigned short data)
{
return data;
}
void ru(int i)
{
if(fu(i++)!=5)ASSERT(0);
if(fu(++i)!=7)ASSERT(0);
}
static inline int fs (signed short data)
{
return data;
}
void rs(int i)
{
if(fs(i++)!=5)ASSERT(0);
if(fs(++i)!=7)ASSERT(0);
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Bug #2874
ru(5);
rs(5);
return;
#endif
}
|