blob: 8fe991bb81950057d834fb444cea2e306a989d34 (
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
|
/* PR tree-optimization/69097 */
__attribute__((noinline, noclone)) int
f1 (int x, int y)
{
return x % y;
}
__attribute__((noinline, noclone)) int
f2 (int x, int y)
{
return x % -y;
}
__attribute__((noinline, noclone)) int
f3 (int x, int y)
{
int z = -y;
return x % z;
}
int
main ()
{
if (f1 (-__INT_MAX__ - 1, 1) != 0
|| f2 (-__INT_MAX__ - 1, -1) != 0
|| f3 (-__INT_MAX__ - 1, -1) != 0)
__builtin_abort ();
return 0;
}
|