]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
stor-layout.c (is_pending_size): Remove.
authorKazu Hirata <kazu@cs.umass.edu>
Thu, 26 Feb 2004 23:41:34 +0000 (23:41 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Thu, 26 Feb 2004 23:41:34 +0000 (23:41 +0000)
* stor-layout.c (is_pending_size): Remove.
* tree.h: Remove the corresponding prototype.

From-SVN: r78532

gcc/ChangeLog
gcc/stor-layout.c
gcc/tree.h

index 676f7815850996ccc37ec5c08f5c215a70cf60e9..aba02a706cd826121f9b7e01bb8afc60880db7e0 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * stor-layout.c (is_pending_size): Remove.
+       * tree.h: Remove the corresponding prototype.
+
 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
 
        * recog.c (validate_replace_src): Remove.
index a79b3f906747dc63f08bdfe56cb755f159dc9d61..031f34856bd4289baaeae247f5f10627ca722bd1 100644 (file)
@@ -104,19 +104,6 @@ get_pending_sizes (void)
   return chain;
 }
 
-/* Return nonzero if EXPR is present on the pending sizes list.  */
-
-int
-is_pending_size (tree expr)
-{
-  tree t;
-
-  for (t = pending_sizes; t; t = TREE_CHAIN (t))
-    if (TREE_VALUE (t) == expr)
-      return 1;
-  return 0;
-}
-
 /* Add EXPR to the pending sizes list.  */
 
 void
index 7846b545c21517ac78490726253a99e98706c46e..08f14d5da922962847367f87af7593d25c62755e 100644 (file)
@@ -2471,7 +2471,6 @@ extern tree size_int_type_wide (HOST_WIDE_INT, tree);
 extern tree round_up (tree, int);
 extern tree round_down (tree, int);
 extern tree get_pending_sizes (void);
-extern int is_pending_size (tree);
 extern void put_pending_size (tree);
 extern void put_pending_sizes (tree);