blob: 1703df64083c9fb37a69b143e9993fc6b678c856 (
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
34
35
36
37
|
/* PR rtl-optimization/104839 */
__attribute__((noipa)) short
foo (void)
{
return -1;
}
__attribute__((noipa)) int
bar (void)
{
short i = foo ();
if (i == -2)
return 2;
long k = i;
int j = -1;
volatile long s = 300;
if (k < 0)
{
k += s;
if (k < 0)
j = 0;
}
else if (k >= s)
j = 0;
if (j != -1)
return 1;
return 0;
}
int
main ()
{
if (bar () != 0)
__builtin_abort ();
return 0;
}
|