+2001-04-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * jcf-io.c (read_zip_member): Cast to long in comparison with
+ signed value.
+
+ * jvspec.c (lang_specific_driver): Initialize variables.
+
+ * mangle.c (find_compression_record_match): Likewise.
+
+ * typeck.c (build_null_signature): Provide static prototype. Mark
+ parameter with ATTRIBUTE_UNUSED.
+
+ * verify.c (verify_jvm_instructions): Initialize variable.
+
2001-04-27 Per Bothner <per@bothner.com>
* parse.y (java_expand_classes): Don't change ctxp_for_generation
jcf->read_ptr = jcf->buffer;
jcf->read_end = jcf->buffer_end;
if (lseek (zipf->fd, zipd->filestart, 0) < 0
- || read (zipf->fd, jcf->buffer, zipd->size) != zipd->size)
+ || read (zipf->fd, jcf->buffer, zipd->size) != (long) zipd->size)
return -2;
}
else
d_stream.next_in = buffer;
d_stream.avail_in = zipd->size;
if (lseek (zipf->fd, zipd->filestart, 0) < 0
- || read (zipf->fd, buffer, zipd->size) != zipd->size)
+ || read (zipf->fd, buffer, zipd->size) != (long) zipd->size)
return -2;
/* Handle NO_HEADER using undocumented zlib feature.
This is a very common hack. */
int indirect_files_count = 0;
/* Name of file containing list of files to compile. */
- char *filelist_filename;
+ char *filelist_filename = 0;
- FILE *filelist_file;
+ FILE *filelist_file = 0;
/* The number of arguments being added to what's in argv, other than
libraries. */
tree *next_current;
{
int i, match;
- tree current, saved_current;
+ tree current, saved_current = NULL_TREE;
/* Search from the beginning for something that matches TYPE, even
partially. */
static tree parse_signature_type PARAMS ((const unsigned char **,
const unsigned char *));
static tree lookup_do PARAMS ((tree, tree, tree, tree, tree (*)(tree)));
+static tree build_null_signature PARAMS ((tree));
tree * type_map;
extern struct obstack permanent_obstack;
return type;
}
-tree
+static tree
build_null_signature (type)
- tree type;
+ tree type ATTRIBUTE_UNUSED;
{
return NULL_TREE;
}
int PC;
int oldpc = 0; /* PC of start of instruction. */
int prevpc = 0; /* If >= 0, PC of previous instruction. */
- const char *message;
+ const char *message = 0;
char *pmessage;
int i;
int index;