OSDN Git Service

* haifa-sched.c (debug_ready_list): Make static.
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 21 Jun 1998 17:59:03 +0000 (17:59 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 21 Jun 1998 17:59:03 +0000 (17:59 +0000)
        * toplev.h (fancy_abort): Declare.
        * rtl.h (expand_expr): Remove declaration.

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

gcc/ChangeLog
gcc/haifa-sched.c
gcc/rtl.h
gcc/toplev.h

index e48de86..e21ea66 100644 (file)
@@ -1,5 +1,13 @@
+Sun Jun 21 18:56:44 1998  Jeffrey A Law  (law@cygnus.com)
+
+       * haifa-sched.c (debug_ready_list): Make static.
+
+       * toplev.h (fancy_abort): Declare.
+
 Sun Jun 21 18:30:13 1998  H.J. Lu  (hjl@gnu.org)
 
+       * rtl.h (expand_expr): Remove declaration.
+
        * loop.c (oballoc): Remove declaration.
        (replace_call_address): Add prototype.
 
index a4c63a3..14051d7 100644 (file)
@@ -743,7 +743,7 @@ static void find_post_sched_live PROTO ((int));
 static void update_reg_usage PROTO ((void));
 static int queue_to_ready PROTO ((rtx [], int));
 
-void debug_ready_list PROTO ((rtx[], int));
+static void debug_ready_list PROTO ((rtx[], int));
 static void init_target_units PROTO (());
 static void insn_print_units PROTO ((rtx));
 static int get_visual_tbl_length PROTO (());
@@ -5527,7 +5527,7 @@ queue_to_ready (ready, n_ready)
 
 /* Print the ready list for debugging purposes. Callable from debugger.  */
 
-extern void
+static void
 debug_ready_list (ready, n_ready)
      rtx ready[];
      int n_ready;
index f8d23fa..bee83bb 100644 (file)
--- a/gcc/rtl.h
+++ b/gcc/rtl.h
@@ -1142,11 +1142,6 @@ extern rtx gen_rtx_REG PROTO((enum machine_mode, int));
 extern rtx find_next_ref               PROTO((rtx, rtx));
 extern rtx *find_single_use            PROTO((rtx, rtx, rtx *));
 
-/* It is hard to write the prototype for expand_expr, since it needs
-   expr.h to be included for the enumeration.  */
-
-extern rtx expand_expr ();
-
 extern rtx output_constant_def         PROTO((union tree_node *));
 extern rtx immed_real_const            PROTO((union tree_node *));
 extern union tree_node *make_tree      PROTO((union tree_node *, rtx));
@@ -1535,5 +1530,4 @@ extern void init_alias_analysis           PROTO ((void));
 extern void end_alias_analysis         PROTO ((void));
 
 extern void record_base_value          PROTO ((int, rtx, int));
-
 #endif /* _RTL_H */
index fa9b365..a598f4d 100644 (file)
@@ -59,4 +59,6 @@ extern void set_float_handler PROTO((jmp_buf));
 extern void output_quoted_string       PROTO ((FILE *, char *));
 #endif
 
+extern void fancy_abort                        PROTO ((void));
+
 #endif /* __GCC_TOPLEV_H */