blob: cfa996c19abc60b3cc9a5bfce6bca4c64abc1d0c (
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
|
/*
20010717-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
void
testTortureExecute (void)
{
int i, j;
unsigned long u, r1, r2;
i = -16;
j = 1;
u = i + j;
/* no sign extension upon shift */
r1 = u >> 1;
/* sign extension upon shift, but there shouldn't be */
r2 = ((unsigned long) (i + j)) >> 1;
if (r1 != r2)
ASSERT (0);
return;
}
|