diff options
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -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. */ |