blob: 3ee0e889572f8e56bc59c6f05fa30b78312a0516 (
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
48
49
|
/*
20010403-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 85
#endif
void b (int *);
void c (int, int);
void d (int);
int e;
void a (int x, int y)
{
int f = x ? e : 0;
int z = y;
b (&y);
c (z, y);
d (f);
}
void b (int *y)
{
(*y)++;
}
void c (int x, int y)
{
if (x == y)
ASSERT (0);
}
void d (int x)
{
}
void
testTortureExecute (void)
{
a (0, 0);
return;
}
|