blob: efeef433c128369497f77607406ef8705329ccbe (
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
|
/*
20140425-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR target/60941 */
/* Reported by Martin Husemann <martin@netbsd.org> */
static void
set (unsigned long *l)
{
*l = 31;
}
void
testTortureExecute (void)
{
unsigned long l;
int i;
set (&l);
i = (int) l;
l = (unsigned long)(2U << i);
if (l != 0)
ASSERT (0);
}
|