diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-27 14:06:58 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-03-27 14:06:58 +0000 |
commit | 4f0c9cf23a27fd4fbc5aa70adeb094cfe0eed9ae (patch) | |
tree | 4d43b2277fb5d878ba4fe9f099a634bd9ad43f5f /gcc/ipa-cp.c | |
parent | e79e977d36a79d47948ba03c8fb6dc199dff1c7b (diff) | |
download | gcc-4f0c9cf23a27fd4fbc5aa70adeb094cfe0eed9ae.tar.gz |
2013-03-27 Martin Jambor <mjambor@suse.cz>
PR tree-optimization/55334
* ipa-cp.c (initialize_node_lattices): Allow IPA-CP through and to
restricted pointers to arrays.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@197163 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-cp.c')
-rw-r--r-- | gcc/ipa-cp.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gcc/ipa-cp.c b/gcc/ipa-cp.c index 3545ed1b53a..aac21ceb6fa 100644 --- a/gcc/ipa-cp.c +++ b/gcc/ipa-cp.c @@ -730,22 +730,6 @@ initialize_node_lattices (struct cgraph_node *node) cgraph_node_name (node), node->uid, disable ? "BOTTOM" : "VARIABLE"); } - if (!disable) - for (i = 0; i < ipa_get_param_count (info) ; i++) - { - struct ipcp_param_lattices *plats = ipa_get_parm_lattices (info, i); - tree t = TREE_TYPE (ipa_get_param(info, i)); - - if (POINTER_TYPE_P (t) && TYPE_RESTRICT (t) - && TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE) - { - set_lattice_to_bottom (&plats->itself); - if (dump_file && (dump_flags & TDF_DETAILS) - && !node->alias && !node->thunk.thunk_p) - fprintf (dump_file, "Going to ignore param %i of of %s/%i.\n", - i, cgraph_node_name (node), node->uid); - } - } for (ie = node->indirect_calls; ie; ie = ie->next_callee) if (ie->indirect_info->polymorphic) |