blob: e1063d265d39c71ff9ee71d43fd0f37a2610d1d2 (
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
35
36
37
38
39
40
41
42
43
44
|
/*
920730-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* 920730-1.c */
#include <limits.h>
int f1()
{
int b=INT_MIN;
return b>=INT_MIN;
}
int f2()
{
int b=INT_MIN+1;
return b>= (unsigned)(INT_MAX+2);
}
int f3()
{
int b=INT_MAX;
return b>=INT_MAX;
}
int f4()
{
int b=-1;
return b>=UINT_MAX;
}
void
testTortureExecute (void)
{
if((f1()&f2()&f3()&f4())!=1)
ASSERT(0);
return;
}
|