blob: bc766dadbfdb87180d23c5da2f9ea327590ab00d (
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
|
/*
20020216-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR c/3444
This used to fail because bitwise xor was improperly computed in char type
and sign extended to int type. */
signed char c = (signed char) 0xffffffff;
int foo (void)
{
return (unsigned short) c ^ (signed char) 0x99999999;
}
void testTortureExecute (void)
{
if ((unsigned char) -1 != 0xff
|| sizeof (short) != 2
|| sizeof (int) != 4)
return;
if (foo () != (int) 0xffff0066)
ASSERT (0);
return;
}
|