blob: 6f9ebe0fd62be85c96a2ac68b0776d614bd49997 (
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
|
/*
20000605-2.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
struct F { int i; };
void f1(struct F *x, struct F *y)
{
int timeout = 0;
for (; ((const struct F*)x)->i < y->i ; x->i++)
if (++timeout > 5)
ASSERT (0);
}
void
testTortureExecute (void)
{
struct F x, y;
x.i = 0;
y.i = 1;
f1 (&x, &y);
return;
}
|