blob: 14490e0e4f7d9fff80e683e3f1680232c4980cd9 (
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
|
/*
20131127-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR middle-end/59138 */
/* Testcase by John Regehr <regehr@cs.utah.edu> */
struct S0 {
int f0;
int f1;
int f2;
short f3;
};
short a = 1;
struct S0 b = { 1 }, c, d, e;
#if !defined(__SDCC_ds390) && !defined(__SDCC_ds390) && !defined(__SDCC_hc08) && !defined(__SDCC_s08) // struct return not yet supported
struct S0 fn1() { return c; }
void fn2 (void)
{
b = fn1 ();
a = 0;
d = e;
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_ds390) && !defined(__SDCC_ds390) && !defined(__SDCC_hc08) && !defined(__SDCC_s08) // struct return not yet supported
fn2 ();
if (a != 0)
ASSERT (0);
#endif
}
|