summaryrefslogtreecommitdiff
path: root/gcc/gimple-ssa-strength-reduction.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2017-09-06 12:55:13 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2017-09-06 12:55:13 +0000
commit1ffbb0160d3c895133ef3104ccd5e25d477e48ba (patch)
treeabc16449a7c44f470260590152dd36a1f813db43 /gcc/gimple-ssa-strength-reduction.c
parent796bd467fd9b9b60eaafbc6b837466034305b504 (diff)
2017-09-06 Richard Biener <rguenther@suse.de>
* gimple-ssa-strength-reduction.c (find_candidates_dom_walker::before_dom_children): Also allow pointer types. From-SVN: r251791
Diffstat (limited to 'gcc/gimple-ssa-strength-reduction.c')
-rw-r--r--gcc/gimple-ssa-strength-reduction.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/gimple-ssa-strength-reduction.c b/gcc/gimple-ssa-strength-reduction.c
index 1c208253210..b37ce35e36e 100644
--- a/gcc/gimple-ssa-strength-reduction.c
+++ b/gcc/gimple-ssa-strength-reduction.c
@@ -1742,7 +1742,8 @@ find_candidates_dom_walker::before_dom_children (basic_block bb)
slsr_process_ref (gs);
else if (is_gimple_assign (gs)
- && INTEGRAL_TYPE_P (TREE_TYPE (gimple_assign_lhs (gs))))
+ && (INTEGRAL_TYPE_P (TREE_TYPE (gimple_assign_lhs (gs)))
+ || POINTER_TYPE_P (TREE_TYPE (gimple_assign_lhs (gs)))))
{
tree rhs1 = NULL_TREE, rhs2 = NULL_TREE;