Commit ffb1f63d by Kaveh R. Ghazi Committed by Kaveh Ghazi

jcf-write.c (CHECK_PUT): Add static prototype.

        * jcf-write.c (CHECK_PUT): Add static prototype.  Make pointer
        types the same in comparison.
        (CHECK_OP): Add static prototype.

From-SVN: r34566
parent cd9b4298
2000-06-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* jcf-write.c (CHECK_PUT): Add static prototype. Make pointer
types the same in comparison.
(CHECK_OP): Add static prototype.
2000-06-13 Jakub Jelinek <jakub@redhat.com> 2000-06-13 Jakub Jelinek <jakub@redhat.com>
* typeck.c (build_java_array_type): Set TYPE_USER_ALIGN. * typeck.c (build_java_array_type): Set TYPE_USER_ALIGN.
......
...@@ -348,14 +348,16 @@ static void append_innerclasses_attribute_entry PARAMS ((struct jcf_partial *, t ...@@ -348,14 +348,16 @@ static void append_innerclasses_attribute_entry PARAMS ((struct jcf_partial *, t
write next, and we assume enoygh space has been allocated. */ write next, and we assume enoygh space has been allocated. */
#ifdef ENABLE_CHECKING #ifdef ENABLE_CHECKING
int static int CHECK_PUT PARAMS ((void *, struct jcf_partial *, int));
static int
CHECK_PUT(ptr, state, i) CHECK_PUT(ptr, state, i)
void *ptr; void *ptr;
struct jcf_partial *state; struct jcf_partial *state;
int i; int i;
{ {
if (ptr < state->chunk->data if ((unsigned char *)ptr < state->chunk->data
|| (char*)ptr + i > state->chunk->data + state->chunk->size) || (unsigned char*)ptr + i > state->chunk->data + state->chunk->size)
fatal ("internal error - CHECK_PUT failed"); fatal ("internal error - CHECK_PUT failed");
return 0; return 0;
} }
...@@ -402,7 +404,9 @@ alloc_chunk (last, data, size, work) ...@@ -402,7 +404,9 @@ alloc_chunk (last, data, size, work)
} }
#ifdef ENABLE_CHECKING #ifdef ENABLE_CHECKING
int static int CHECK_OP PARAMS ((struct jcf_partial *));
static int
CHECK_OP(struct jcf_partial *state) CHECK_OP(struct jcf_partial *state)
{ {
if (state->bytecode.ptr > state->bytecode.limit) if (state->bytecode.ptr > state->bytecode.limit)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment