re PR middle-end/89008 (O2 and O1 results differ for simple test)
authorBill Schmidt <wschmidt@linux.ibm.com>
Thu, 31 Jan 2019 13:53:06 +0000 (13:53 +0000)
committerWilliam Schmidt <wschmidt@gcc.gnu.org>
Thu, 31 Jan 2019 13:53:06 +0000 (13:53 +0000)
2018-01-31  Bill Schmidt  <wschmidt@linux.ibm.com>

PR tree-optimization/89008
* gimple-ssa-strength-reduction.c (slsr_process_mul): Don't
process anything of the form X * 0.

From-SVN: r268422

gcc/ChangeLog
gcc/gimple-ssa-strength-reduction.c

index d0ce117..56e13e8 100644 (file)
@@ -1,3 +1,9 @@
+2018-01-31  Bill Schmidt  <wschmidt@linux.ibm.com>
+
+       PR tree-optimization/89008
+       * gimple-ssa-strength-reduction.c (slsr_process_mul): Don't
+       process anything of the form X * 0.
+
 2019-01-31  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/89135
index 82721a9..937a877 100644 (file)
@@ -1268,7 +1268,7 @@ slsr_process_mul (gimple *gs, tree rhs1, tree rhs2, bool speed)
       c->next_interp = c2->cand_num;
       c2->first_interp = c->cand_num;
     }
-  else if (TREE_CODE (rhs2) == INTEGER_CST)
+  else if (TREE_CODE (rhs2) == INTEGER_CST && !integer_zerop (rhs2))
     {
       /* Record an interpretation for the multiply-immediate.  */
       c = create_mul_imm_cand (gs, rhs1, rhs2, speed);