blob: 07d442e3b6279bd42f11dcbd493095d4d8ee9614 (
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
|
/*
pr69320-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <stdlib.h>
int a, b, d, f;
char c;
static int *e = &d;
void
testTortureExecute (void) {
int g = -1L;
*e = g;
c = 4;
for (; c >= 14; c++)
*e = 1;
f = a == 0;
*e ^= f;
#if 0 // Enable when SDCC intermingles
int h = ~d;
if (d)
b = h;
if (h)
return;
ASSERT(0);
#endif
}
|