aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimple.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2009-06-17 10:29:22 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2009-06-17 10:29:22 +0000
commit4d61856d0a221c695bbb5193ae18403d07cde0d4 (patch)
tree824902ba221886d42966346c76169bbff0889f86 /gcc/gimple.c
parent3cb8677cc030b145391ac547f159609b03dbbd6c (diff)
downloadgcc-4d61856d0a221c695bbb5193ae18403d07cde0d4.zip
gcc-4d61856d0a221c695bbb5193ae18403d07cde0d4.tar.gz
gcc-4d61856d0a221c695bbb5193ae18403d07cde0d4.tar.bz2
re PR c++/40389 (optimizer bug (possibly))
2009-06-17 Richard Guenther <rguenther@suse.de> PR tree-optimization/40389 * tree-ssa-structalias.c (handle_rhs_call): Restrict NRV case to addressable types. * gimple.c (walk_stmt_load_store_addr_ops): Likewise. From-SVN: r148597
Diffstat (limited to 'gcc/gimple.c')
-rw-r--r--gcc/gimple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple.c b/gcc/gimple.c
index 91057b4..4f18b78 100644
--- a/gcc/gimple.c
+++ b/gcc/gimple.c
@@ -3267,7 +3267,7 @@ walk_stmt_load_store_addr_ops (gimple stmt, void *data,
if (visit_addr
&& gimple_call_return_slot_opt_p (stmt)
&& gimple_call_lhs (stmt) != NULL_TREE
- && TREE_ADDRESSABLE (gimple_call_lhs (stmt)))
+ && TREE_ADDRESSABLE (TREE_TYPE (gimple_call_lhs (stmt))))
ret |= visit_addr (stmt, gimple_call_lhs (stmt), data);
}
else if (gimple_code (stmt) == GIMPLE_ASM)