mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 08:40:27 +08:00
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
This commit is contained in:
parent
53250f44c0
commit
5d30c58de4
@ -1,3 +1,8 @@
|
||||
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))
|
||||
|
Loading…
x
Reference in New Issue
Block a user