Commit c7924937 by Kazu Hirata Committed by Kazu Hirata

stor-layout.c (is_pending_size): Remove.

	* stor-layout.c (is_pending_size): Remove.
	* tree.h: Remove the corresponding prototype.

From-SVN: r78532
parent ca0afc29
2004-02-26 Kazu Hirata <kazu@cs.umass.edu> 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. * recog.c (validate_replace_src): Remove.
* recog.h: Remove the corresponding prototype. * recog.h: Remove the corresponding prototype.
......
...@@ -104,19 +104,6 @@ get_pending_sizes (void) ...@@ -104,19 +104,6 @@ get_pending_sizes (void)
return chain; 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. */ /* Add EXPR to the pending sizes list. */
void void
......
...@@ -2471,7 +2471,6 @@ extern tree size_int_type_wide (HOST_WIDE_INT, tree); ...@@ -2471,7 +2471,6 @@ extern tree size_int_type_wide (HOST_WIDE_INT, tree);
extern tree round_up (tree, int); extern tree round_up (tree, int);
extern tree round_down (tree, int); extern tree round_down (tree, int);
extern tree get_pending_sizes (void); extern tree get_pending_sizes (void);
extern int is_pending_size (tree);
extern void put_pending_size (tree); extern void put_pending_size (tree);
extern void put_pending_sizes (tree); extern void put_pending_sizes (tree);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment