Commit 5d30c58d by Richard Biener Committed by Richard Biener

re PR tree-optimization/69595 (Bogus -Warray-bound warning due to missed optimization)

2016-02-15  Richard Biener  <rguenther@suse.de>

	PR tree-optimization/69595
	* match.pd: Complete range test simplification to true.

From-SVN: r233425
parent 53250f44
2016-02-15 Richard Biener <rguenther@suse.de>
PR tree-optimization/69595
* match.pd: Complete range test simplification to true.
2016-02-15 Bernd Schmidt <bschmidt@redhat.com>
PR rtl-optimization/69648
......
......@@ -2119,8 +2119,8 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
/* Simple range test simplifications. */
/* A < B || A >= B -> true. */
(for test1 (lt le ne)
test2 (ge gt eq)
(for test1 (lt le le le ne ge)
test2 (ge gt ge ne eq ne)
(simplify
(bit_ior:c (test1 @0 @1) (test2 @0 @1))
(if (INTEGRAL_TYPE_P (TREE_TYPE (@0))
......
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