blob: 69c94b78efe0dbd04469a7958aad9ec9e38c2d41 (
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
|
/*
pr79286.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <stdio.h>
int a = 0, c = 0;
#if 0 // Enable when SDCC supports this style of init
static int d[][8] = {};
#endif
void
testTortureExecute (void)
{
#if 0
int e;
for (int b = 0; b < 4; b++)
{
printf ("%d\n", b, e);
while (a && c++)
e = d[300000000000000000][0];
}
return;
#endif
}
#if !defined(PORT_HOST)
int putchar (int c)
{
c;
}
#endif
|