diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-10 03:04:41 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-10 03:04:41 +0000 |
commit | 77d3109be28c227a324991307b0e2e46774b011c (patch) | |
tree | e064acf94ef904267708e251567092ae16d89098 /gcc/java/verify.c | |
parent | 17211ab55314d76370a68036f2d057b1effd687f (diff) | |
download | gcc-77d3109be28c227a324991307b0e2e46774b011c.zip gcc-77d3109be28c227a324991307b0e2e46774b011c.tar.gz gcc-77d3109be28c227a324991307b0e2e46774b011c.tar.bz2 |
* class.c, gjavah.c, parse.y, verify.c: Don't use PTR.
From-SVN: r61137
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 a21cb83..cf502b5 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; |