2016-02-15 Richard Biener <rguenther@suse.de>
PR tree-optimization/69595
* match.pd: Complete range test simplification to true.
From-SVN: r233425
+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
/* 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))