tree.h (ctor_to_list): Delete.

* tree.h (ctor_to_list): Delete.
	* tree.c (ctor_to_list): Delete.

From-SVN: r159437
This commit is contained in:
Nathan Froyd 2010-05-15 18:41:11 +00:00 committed by Nathan Froyd
parent ade41c1df2
commit b75bdd292f
3 changed files with 5 additions and 23 deletions

View File

@ -1,3 +1,8 @@
2010-05-15 Nathan Froyd <froydnj@codesourcery.com>
* tree.h (ctor_to_list): Delete.
* tree.c (ctor_to_list): Delete.
2010-05-15 Jan Hubicka <jh@suse.cz>
* ipa-reference.c: Include toplev.h

View File

@ -2124,25 +2124,6 @@ tree_cons_stat (tree purpose, tree value, tree chain MEM_STAT_DECL)
return node;
}
/* Return the elements of a CONSTRUCTOR as a TREE_LIST. */
tree
ctor_to_list (tree ctor)
{
tree list = NULL_TREE;
tree *p = &list;
unsigned ix;
tree purpose, val;
FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (ctor), ix, purpose, val)
{
*p = build_tree_list (purpose, val);
p = &TREE_CHAIN (*p);
}
return list;
}
/* Return the values of the elements of a CONSTRUCTOR as a vector of
trees. */

View File

@ -4475,10 +4475,6 @@ extern tree first_field (const_tree);
extern bool initializer_zerop (const_tree);
/* Given a CONSTRUCTOR CTOR, return the elements as a TREE_LIST. */
extern tree ctor_to_list (tree);
/* Given a CONSTRUCTOR CTOR, return the element values as a vector. */
extern VEC(tree,gc) *ctor_to_vec (tree);