summaryrefslogtreecommitdiff
path: root/gcc/global.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/global.c')
-rwxr-xr-xgcc/global.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/global.c b/gcc/global.c
index 076440f..d6a0526 100755
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -263,7 +263,7 @@ static int n_regs_set;
static HARD_REG_SET eliminable_regset;
-static int allocno_compare (const GENERIC_PTR, const GENERIC_PTR);
+static int allocno_compare (const void *, const void *);
static void global_conflicts (void);
static void expand_preferences (void);
static void prune_preferences (void);
@@ -603,8 +603,8 @@ global_alloc (FILE *file)
static int
allocno_compare (v1p, v2p)
- const GENERIC_PTR v1p;
- const GENERIC_PTR v2p;
+ const void * v1p;
+ const void * v2p;
{
int v1 = *(int *)v1p, v2 = *(int *)v2p;
register int pri1;