From: Kazu Hirata Date: Wed, 18 Jan 2006 06:38:09 +0000 (+0000) Subject: flow.c (initialize_uninitialized_subregs): Make it static. X-Git-Tag: releases/gcc-4.2.0~4792 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0dc2bb65448c58c647e810c50bcf7ac2f498634;p=thirdparty%2Fgcc.git flow.c (initialize_uninitialized_subregs): Make it static. * flow.c (initialize_uninitialized_subregs): Make it static. * rtl.h: Remove the prototype for initialize_uninitialized_subregs. From-SVN: r109873 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c2e6f633a836..17b2f433ef9b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -4,6 +4,10 @@ global_reg_mentioned_p): Remove. * rtl.h: Remove the prototype for global_reg_mentioned_p. + * flow.c (initialize_uninitialized_subregs): Make it static. + * rtl.h: Remove the prototype for + initialize_uninitialized_subregs. + 2006-01-17 Roger Sayle * config/i386/i386.c (COSTS_N_BYTES): New macro. diff --git a/gcc/flow.c b/gcc/flow.c index ca2f1e14f6bc..94595da24773 100644 --- a/gcc/flow.c +++ b/gcc/flow.c @@ -1494,7 +1494,7 @@ find_regno_partial (rtx *ptr, void *data) registers whose value is unknown, and may contain some kind of sticky bits we don't want. */ -int +static int initialize_uninitialized_subregs (void) { rtx insn; diff --git a/gcc/rtl.h b/gcc/rtl.h index f3ec0659ae7c..9d8eb3657419 100644 --- a/gcc/rtl.h +++ b/gcc/rtl.h @@ -2022,7 +2022,6 @@ extern rtx move_by_pieces (rtx, rtx, unsigned HOST_WIDE_INT, /* In flow.c */ extern void recompute_reg_usage (void); -extern int initialize_uninitialized_subregs (void); extern void delete_dead_jumptables (void); extern void print_rtl_with_bb (FILE *, rtx); extern void dump_flow_info (FILE *);