* cse.c (cse_condition_code_reg): Make it static.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 16 Jan 2006 05:17:54 +0000 (05:17 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 16 Jan 2006 05:17:54 +0000 (05:17 +0000)
* rtl.h: Remove the prototype for cse_condition_code_reg.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109742 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cse.c
gcc/rtl.h

index 9d33732..5f39173 100644 (file)
@@ -1,3 +1,8 @@
+2006-01-16  Kazu Hirata  <kazu@codesourcery.com>
+
+       * cse.c (cse_condition_code_reg): Make it static.
+       * rtl.h: Remove the prototype for cse_condition_code_reg.
+
 2006-01-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
        PR target/25168
index a352c0e..ce6edcd 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -7676,7 +7676,7 @@ cse_cc_succs (basic_block bb, rtx cc_reg, rtx cc_src, bool can_change_mode)
 /* If we have a fixed condition code register (or two), walk through
    the instructions and try to eliminate duplicate assignments.  */
 
-void
+static void
 cse_condition_code_reg (void)
 {
   unsigned int cc_regno_1;
index 104d4fb..78b0b45 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1890,7 +1890,6 @@ extern int rtx_to_tree_code (enum rtx_code);
 /* In cse.c */
 extern int delete_trivially_dead_insns (rtx, int);
 extern int cse_main (rtx, int, FILE *);
-extern void cse_condition_code_reg (void);
 extern int exp_equiv_p (rtx, rtx, int, bool);
 extern unsigned hash_rtx (rtx x, enum machine_mode, int *, int *, bool);