blob: 56509c12ed0e66f2f5a2ccda907bd25d31606ce5 (
plain)
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
|
/*
20020904-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR c/7102 */
/* Verify that GCC zero-extends integer constants
in unsigned binary operations. */
typedef unsigned char u8;
u8 fun(u8 y)
{
u8 x=((u8)255)/y;
return x;
}
void testTortureExecute(void)
{
if (fun((u8)2) != 127)
ASSERT(0);
return;
}
|