diff options
Diffstat (limited to 'gcc/java/verify.c')
-rw-r--r-- | gcc/java/verify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/verify.c b/gcc/java/verify.c index a21cb83694b..cf502b5ba66 100644 --- a/gcc/java/verify.c +++ b/gcc/java/verify.c @@ -40,7 +40,7 @@ static void push_pending_label (tree); static tree merge_types (tree, tree); static const char *check_pending_block (tree); static void type_stack_dup (int, int); -static int start_pc_cmp (const PTR, const PTR); +static int start_pc_cmp (const void *, const void *); static char *pop_argument_types (tree); extern int stack_pointer; @@ -351,8 +351,8 @@ struct pc_index /* A helper that is used when sorting exception ranges. */ static int start_pc_cmp (xp, yp) - const PTR xp; - const PTR yp; + const void *xp; + const void *yp; { const struct pc_index *x = (const struct pc_index *) xp; const struct pc_index *y = (const struct pc_index *) yp; |