Commit 8f2de5f1 by Kazu Hirata Committed by Kazu Hirata

builtins.c (apply_args_register_offset): Remove.

	* builtins.c (apply_args_register_offset): Remove.
	* tree.h: Remove the corresponding prototype.

From-SVN: r78533
parent c7924937
2004-02-26 Kazu Hirata <kazu@cs.umass.edu> 2004-02-26 Kazu Hirata <kazu@cs.umass.edu>
* builtins.c (apply_args_register_offset): Remove.
* tree.h: Remove the corresponding prototype.
2004-02-26 Kazu Hirata <kazu@cs.umass.edu>
* stor-layout.c (is_pending_size): Remove. * stor-layout.c (is_pending_size): Remove.
* tree.h: Remove the corresponding prototype. * tree.h: Remove the corresponding prototype.
......
...@@ -883,20 +883,6 @@ static enum machine_mode apply_result_mode[FIRST_PSEUDO_REGISTER]; ...@@ -883,20 +883,6 @@ static enum machine_mode apply_result_mode[FIRST_PSEUDO_REGISTER];
used for calling a function. */ used for calling a function. */
static int apply_args_reg_offset[FIRST_PSEUDO_REGISTER]; static int apply_args_reg_offset[FIRST_PSEUDO_REGISTER];
/* Return the offset of register REGNO into the block returned by
__builtin_apply_args. This is not declared static, since it is
needed in objc-act.c. */
int
apply_args_register_offset (int regno)
{
apply_args_size ();
/* Arguments are always put in outgoing registers (in the argument
block) if such make sense. */
return apply_args_reg_offset[OUTGOING_REGNO (regno)];
}
/* Return the size required for the block returned by __builtin_apply_args, /* Return the size required for the block returned by __builtin_apply_args,
and initialize apply_args_mode. */ and initialize apply_args_mode. */
......
...@@ -2930,7 +2930,6 @@ extern void indent_to (FILE *, int); ...@@ -2930,7 +2930,6 @@ extern void indent_to (FILE *, int);
#endif #endif
/* In expr.c */ /* In expr.c */
extern int apply_args_register_offset (int);
extern rtx expand_builtin_return_addr (enum built_in_function, int, rtx); extern rtx expand_builtin_return_addr (enum built_in_function, int, rtx);
extern void check_max_integer_computation_mode (tree); extern void check_max_integer_computation_mode (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