[Bug tree-optimization/77848] Gimple if-conversion results in redundant comparisons
wschmidt at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Fri Nov 4 13:06:00 GMT 2016
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77848
--- Comment #8 from Bill Schmidt <wschmidt at gcc dot gnu.org> ---
FYI, the patch I am testing is:
Index: gcc/tree-if-conv.c
===================================================================
--- gcc/tree-if-conv.c (revision 241802)
+++ gcc/tree-if-conv.c (working copy)
@@ -2767,8 +2767,7 @@ tree_if_conversion (struct loop *loop)
|| loop->dont_vectorize))
goto cleanup;
- if ((any_pred_load_store || any_complicated_phi)
- && !version_loop_for_if_conversion (loop))
+ if (flag_tree_loop_vectorize && !version_loop_for_if_conversion (loop))
goto cleanup;
/* Now all statements are if-convertible. Combine all the basic
More information about the Gcc-bugs
mailing list