diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-04-18 23:58:51 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-04-18 23:58:51 +0200 |
commit | 848257079a98c2fa9c7d5a8cc666f7c0798e5ec0 (patch) | |
tree | 9c65ab447ce980a3d0817af30fab2a1d53ba99f8 /gcc/gimple.h | |
parent | 37a8ccfcdcfe73378717101f82767760ae35f5a5 (diff) | |
download | gcc-848257079a98c2fa9c7d5a8cc666f7c0798e5ec0.zip gcc-848257079a98c2fa9c7d5a8cc666f7c0798e5ec0.tar.gz gcc-848257079a98c2fa9c7d5a8cc666f7c0798e5ec0.tar.bz2 |
re PR middle-end/48661 (wrong-code regression with devirtualization)
PR middle-end/48661
* gimple-fold.c (gimple_get_virt_method_for_binfo): Return NULL
if TREE_TYPE (v) is non-NULL.
* gimple-fold.c (gimple_get_virt_method_for_binfo): Renamed from
gimple_get_virt_mehtod_for_binfo.
* gimple.h (gimple_get_virt_method_for_binfo): Likewise.
* ipa-cp.c (ipcp_process_devirtualization_opportunities): Adjust
callers.
* ipa-prop.c (try_make_edge_direct_virtual_call): Likewise.
* g++.dg/torture/pr48661.C: New test.
From-SVN: r172677
Diffstat (limited to 'gcc/gimple.h')
-rw-r--r-- | gcc/gimple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple.h b/gcc/gimple.h index 3146b70..9ae29c4 100644 --- a/gcc/gimple.h +++ b/gcc/gimple.h @@ -896,7 +896,7 @@ unsigned get_gimple_rhs_num_ops (enum tree_code); gimple gimple_alloc_stat (enum gimple_code, unsigned MEM_STAT_DECL); const char *gimple_decl_printable_name (tree, int); bool gimple_fold_call (gimple_stmt_iterator *gsi, bool inplace); -tree gimple_get_virt_mehtod_for_binfo (HOST_WIDE_INT, tree, tree *, bool); +tree gimple_get_virt_method_for_binfo (HOST_WIDE_INT, tree, tree *, bool); void gimple_adjust_this_by_delta (gimple_stmt_iterator *, tree); /* Returns true iff T is a valid GIMPLE statement. */ extern bool is_gimple_stmt (tree); |