aboutsummaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-04-21 15:31:56 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-04-21 15:31:56 -0400
commit82c68a78249be9fd1d0fcdb1c0e6fb699a907e20 (patch)
treef37b220f222f1b41d8ea6926806503d4201f32af /gcc/global.c
parent81fbaa4179fdff35a8f4a30505ce38ff38ece210 (diff)
downloadgcc-82c68a78249be9fd1d0fcdb1c0e6fb699a907e20.zip
gcc-82c68a78249be9fd1d0fcdb1c0e6fb699a907e20.tar.gz
gcc-82c68a78249be9fd1d0fcdb1c0e6fb699a907e20.tar.bz2
Add prototypes for static functions.
From-SVN: r7118
Diffstat (limited to 'gcc/global.c')
-rw-r--r--gcc/global.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/global.c b/gcc/global.c
index cbc9f00..92c717b 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -250,20 +250,20 @@ static int n_regs_set;
static HARD_REG_SET eliminable_regset;
-static int allocno_compare ();
-static void mark_reg_store ();
-static void mark_reg_clobber ();
-static void mark_reg_conflicts ();
-static void mark_reg_live_nc ();
-static void mark_reg_death ();
-static void dump_conflicts ();
-void dump_global_regs ();
-static void find_reg ();
-static void global_conflicts ();
-static void expand_preferences ();
-static void prune_preferences ();
-static void record_conflicts ();
-static void set_preference ();
+static int allocno_compare PROTO((int *, int *));
+static void global_conflicts PROTO((void));
+static void expand_preferences PROTO((void));
+static void prune_preferences PROTO((void));
+static void find_reg PROTO((int, HARD_REG_SET, int, int, int));
+static void record_one_conflict PROTO((int));
+static void record_conflicts PROTO((short *, int));
+static void mark_reg_store PROTO((rtx, rtx));
+static void mark_reg_clobber PROTO((rtx, rtx));
+static void mark_reg_conflicts PROTO((rtx));
+static void mark_reg_death PROTO((rtx));
+static void mark_reg_live_nc PROTO((int, enum machine_mode));
+static void set_preference PROTO((rtx, rtx));
+static void dump_conflicts PROTO((FILE *));
/* Perform allocation of pseudo-registers not allocated by local_alloc.
FILE is a file to output debugging information on,