Commit 9ebce098 by Jakub Jelinek Committed by Jakub Jelinek

re PR tree-optimization/81428 (ICE: in build_one_cst, at tree.c:2079 with -O2.…

re PR tree-optimization/81428 (ICE: in build_one_cst, at tree.c:2079 with -O2. Fixed point division.)

	PR tree-optimization/81428
	* match.pd (X / X -> one): Don't optimize _Fract divisions, as 1
	can't be built for those types.

	* gcc.dg/fixed-point/pr81428.c: New test.

From-SVN: r250265
parent f986e51e
2017-07-17 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/81428
* match.pd (X / X -> one): Don't optimize _Fract divisions, as 1
can't be built for those types.
2017-07-17 Georg-Johann Lay <avr@gjlay.de>
Remove stuff dead since r239246.
......
......@@ -243,8 +243,9 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
/* X / X is one. */
(simplify
(div @0 @0)
/* But not for 0 / 0 so that we can get the proper warnings and errors. */
(if (!integer_zerop (@0))
/* But not for 0 / 0 so that we can get the proper warnings and errors.
And not for _Fract types where we can't build 1. */
(if (!integer_zerop (@0) && !ALL_FRACT_MODE_P (TYPE_MODE (type)))
{ build_one_cst (type); }))
/* X / abs (X) is X < 0 ? -1 : 1. */
(simplify
......
2017-07-17 Jakub Jelinek <jakub@redhat.com>
PR tree-optimization/81428
* gcc.dg/fixed-point/pr81428.c: New test.
PR tree-optimization/81365
* g++.dg/torture/pr81365.C: New test.
......
/* PR tree-optimization/81428 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
void
foo (long _Fract *a, long _Fract *b)
{
*b = *a / *a;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment