Commit 0bdb5458 by Kazu Hirata Committed by Kazu Hirata

integrate.c (has_func_hard_reg_initial_val, [...]): Make them static.

	* integrate.c (has_func_hard_reg_initial_val,
	get_func_hard_reg_initial_val): Make them static.
	* integrate.h: Remove the corresponding prototypes.

From-SVN: r90895
parent d78db459
...@@ -3,6 +3,10 @@ ...@@ -3,6 +3,10 @@
* emit-rtl.c (classify_insn): Make it static. * emit-rtl.c (classify_insn): Make it static.
* rtl.h: Remove the corresponding prototype. * rtl.h: Remove the corresponding prototype.
* integrate.c (has_func_hard_reg_initial_val,
get_func_hard_reg_initial_val): Make them static.
* integrate.h: Remove the corresponding prototypes.
2004-11-19 Ben Elliston <bje@au.ibm.com> 2004-11-19 Ben Elliston <bje@au.ibm.com>
* dwarf2asm.h (dw2_asm_output_pcel): Stub out with #if 0. * dwarf2asm.h (dw2_asm_output_pcel): Stub out with #if 0.
......
...@@ -293,7 +293,7 @@ get_hard_reg_initial_reg (struct function *fun, rtx reg) ...@@ -293,7 +293,7 @@ get_hard_reg_initial_reg (struct function *fun, rtx reg)
return NULL_RTX; return NULL_RTX;
} }
rtx static rtx
has_func_hard_reg_initial_val (struct function *fun, rtx reg) has_func_hard_reg_initial_val (struct function *fun, rtx reg)
{ {
struct initial_value_struct *ivs = fun->hard_reg_initial_vals; struct initial_value_struct *ivs = fun->hard_reg_initial_vals;
...@@ -309,7 +309,7 @@ has_func_hard_reg_initial_val (struct function *fun, rtx reg) ...@@ -309,7 +309,7 @@ has_func_hard_reg_initial_val (struct function *fun, rtx reg)
return NULL_RTX; return NULL_RTX;
} }
rtx static rtx
get_func_hard_reg_initial_val (struct function *fun, rtx reg) get_func_hard_reg_initial_val (struct function *fun, rtx reg)
{ {
struct initial_value_struct *ivs = fun->hard_reg_initial_vals; struct initial_value_struct *ivs = fun->hard_reg_initial_vals;
......
...@@ -25,11 +25,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -25,11 +25,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
reg as of the start of the function (for inlined functions, the reg as of the start of the function (for inlined functions, the
value at the start of the parent function). */ value at the start of the parent function). */
extern rtx get_hard_reg_initial_val (enum machine_mode, int); extern rtx get_hard_reg_initial_val (enum machine_mode, int);
/* Likewise, but for a different than the current function, or
arbitrary expression. */
extern rtx get_func_hard_reg_initial_val (struct function *, rtx);
/* Likewise, but iff someone else has caused it to become allocated. */
extern rtx has_func_hard_reg_initial_val (struct function *, rtx);
/* Likewise, but for common cases. */ /* Likewise, but for common cases. */
extern rtx has_hard_reg_initial_val (enum machine_mode, int); extern rtx has_hard_reg_initial_val (enum machine_mode, int);
/* If a pseudo represents an initial hard reg (or expression), return /* If a pseudo represents an initial hard reg (or expression), return
......
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