diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-10 03:04:41 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-10 03:04:41 +0000 |
commit | 55252a35be3b1cc7d8c0efe8c5496cd3c765d232 (patch) | |
tree | e064acf94ef904267708e251567092ae16d89098 /gcc/java/verify.c | |
parent | 573aba856d39e5b11d72261a6ccb6004dcb923cd (diff) | |
download | gcc-55252a35be3b1cc7d8c0efe8c5496cd3c765d232.tar.gz |
* class.c, gjavah.c, parse.y, verify.c: Don't use PTR.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61137 138bc75d-0d04-0410-961f-82ee72b054a4
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; |