mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 04:50:25 +08:00
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
This commit is contained in:
parent
d78db45956
commit
0bdb545887
@ -3,6 +3,10 @@
|
||||
* emit-rtl.c (classify_insn): Make it static.
|
||||
* 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>
|
||||
|
||||
* 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)
|
||||
return NULL_RTX;
|
||||
}
|
||||
|
||||
rtx
|
||||
static rtx
|
||||
has_func_hard_reg_initial_val (struct function *fun, rtx reg)
|
||||
{
|
||||
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)
|
||||
return NULL_RTX;
|
||||
}
|
||||
|
||||
rtx
|
||||
static rtx
|
||||
get_func_hard_reg_initial_val (struct function *fun, rtx reg)
|
||||
{
|
||||
struct initial_value_struct *ivs = fun->hard_reg_initial_vals;
|
||||
|
@ -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
|
||||
value at the start of the parent function). */
|
||||
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. */
|
||||
extern rtx has_hard_reg_initial_val (enum machine_mode, int);
|
||||
/* If a pseudo represents an initial hard reg (or expression), return
|
||||
|
Loading…
x
Reference in New Issue
Block a user