tree-gimple.c (is_gimple_constructor_elt): Remove.

* tree-gimple.c (is_gimple_constructor_elt): Remove.
	* tree-gimple.h: Remove the corresponding prototype.

From-SVN: r89466
This commit is contained in:
Kazu Hirata 2004-10-22 18:50:34 +00:00 committed by Kazu Hirata
parent 4fe8591b52
commit 82338042c0
3 changed files with 5 additions and 13 deletions

View File

@ -1,3 +1,8 @@
2004-10-22 Kazu Hirata <kazu@cs.umass.edu>
* tree-gimple.c (is_gimple_constructor_elt): Remove.
* tree-gimple.h: Remove the corresponding prototype.
2004-10-22 Kazu Hirata <kazu@cs.umass.edu>
* varasm.c (get_pool_mode_for_function, get_pool_offset):

View File

@ -132,16 +132,6 @@ rhs_predicate_for (tree lhs)
return is_gimple_mem_rhs;
}
/* Returns true if T is a valid CONSTRUCTOR component in GIMPLE, either
a val or another CONSTRUCTOR. */
bool
is_gimple_constructor_elt (tree t)
{
return (is_gimple_val (t)
|| TREE_CODE (t) == CONSTRUCTOR);
}
/* Return true if T is a valid LHS for a GIMPLE assignment expression. */
bool

View File

@ -81,9 +81,6 @@ extern bool is_gimple_condexpr (tree);
/* Returns true iff T is a type conversion. */
extern bool is_gimple_cast (tree);
/* Returns true iff T is a valid CONSTRUCTOR element (either an rvalue or
another CONSTRUCTOR). */
extern bool is_gimple_constructor_elt (tree);
/* Returns true iff T is a variable that does not need to live in memory. */
extern bool is_gimple_non_addressable (tree t);