blob: 89f08ab6106e21ba82b423acd9df09ac8c7c28db (
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
|
/*
loop-2c.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
int a[2];
static
inline void f (int b, int o)
{
unsigned int i;
int *p;
for (p = &a[b], i = b; --i < ~0; )
*--p = i * 3 + o;
}
void g(int b)
{
f (b, (int)a);
}
void
testTortureExecute (void)
{
a[0] = a[1] = 0;
g (2);
if (a[0] != (int)a || a[1] != (int)a + 3)
ASSERT (0);
return;
}
|