tree-gimple.c (is_gimple_constructor_elt): Remove.
authorKazu Hirata <kazu@cs.umass.edu>
Fri, 22 Oct 2004 18:50:34 +0000 (18:50 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Fri, 22 Oct 2004 18:50:34 +0000 (18:50 +0000)
* tree-gimple.c (is_gimple_constructor_elt): Remove.
* tree-gimple.h: Remove the corresponding prototype.

From-SVN: r89466

gcc/ChangeLog
gcc/tree-gimple.c
gcc/tree-gimple.h

index af043d073d88d3116db29fcf49682535069ea2ef..0dfab351709d95653b1401ce6cde2afd035edd75 100644 (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):
index b2a2ad9a2bda0397164e260fbd7fca904fe387f9..84005aad4095b78a2a800c547636f3e981decc27 100644 (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
index b3fb9c69c912c93193850ede338041b27bdf820f..0f05d6a7f55cb327d237ea0cd0ee445187862503 100644 (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);