blob: 72e186bf287fc41d24445d765fc97dc9faf238f8 (
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
30
31
32
33
|
/* PR middle-end/45262 */
extern void abort (void);
int
foo (unsigned int x)
{
return ((int) x < 0) || ((int) (-x) < 0);
}
int
bar (unsigned int x)
{
return x >> 31 || (-x) >> 31;
}
int
main (void)
{
if (foo (1) != 1)
abort ();
if (foo (0) != 0)
abort ();
if (foo (-1) != 1)
abort ();
if (bar (1) != 1)
abort ();
if (bar (0) != 0)
abort ();
if (bar (-1) != 1)
abort ();
return 0;
}
|