diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-22 18:50:34 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-22 18:50:34 +0000 |
commit | 82338042c07755238fa608567247e53fd844ec91 (patch) | |
tree | 66f0de657def6d1acfb74d598657ce10e04cf2e0 /gcc/tree-gimple.c | |
parent | 4fe8591b5242e7ce738f1a8cce4e77d81982a141 (diff) | |
download | gcc-82338042c07755238fa608567247e53fd844ec91.zip gcc-82338042c07755238fa608567247e53fd844ec91.tar.gz gcc-82338042c07755238fa608567247e53fd844ec91.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-gimple.c')
-rw-r--r-- | gcc/tree-gimple.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/tree-gimple.c b/gcc/tree-gimple.c index b2a2ad9..84005aad 100644 --- a/gcc/tree-gimple.c +++ b/gcc/tree-gimple.c @@ -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 |