function.c (use_return_register): Make it static.
* function.c (use_return_register): Make it static. * function.h: Remove the prototype. From-SVN: r111737
This commit is contained in:
parent
a678e384b9
commit
0bf8477d98
3 changed files with 4 additions and 2 deletions
|
@ -11,6 +11,9 @@
|
|||
* flow.c (recompute_reg_usage): Make it static.
|
||||
* rtl.h: Remove the prototype for recompute_reg_usage.
|
||||
|
||||
* function.c (use_return_register): Make it static.
|
||||
* function.h: Remove the prototype.
|
||||
|
||||
2006-03-05 Kazu Hirata <kazu@codesourcery.com>
|
||||
|
||||
* recog.c (volatile_mem_p, validate_change_maybe_volatile):
|
||||
|
|
|
@ -4307,7 +4307,7 @@ do_use_return_reg (rtx reg, void *arg ATTRIBUTE_UNUSED)
|
|||
emit_insn (gen_rtx_USE (VOIDmode, reg));
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
use_return_register (void)
|
||||
{
|
||||
diddle_return_value (do_use_return_reg, NULL);
|
||||
|
|
|
@ -547,7 +547,6 @@ extern void init_varasm_status (struct function *);
|
|||
#ifdef RTX_CODE
|
||||
extern void diddle_return_value (void (*)(rtx, void*), void*);
|
||||
extern void clobber_return_register (void);
|
||||
extern void use_return_register (void);
|
||||
#endif
|
||||
|
||||
extern rtx get_arg_pointer_save_area (struct function *);
|
||||
|
|
Loading…
Add table
Reference in a new issue