blob: a72d7b662e9fe99b60c0c9c266e80fbd8d384aa5 (
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
|
/*
950929-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 85
#endif
int f (char *p) { }
void
testTortureExecute (void)
{
char c;
char c2;
int i = 0;
char *pc = &c;
char *pc2 = &c2;
int *pi = &i;
*pc2 = 1;
*pi = 1;
*pc2 &= *pi;
f (pc2);
*pc2 = 1;
*pc2 &= *pi;
if (*pc2 != 1)
ASSERT (0);
return;
}
|