diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-19 11:30:30 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-05-19 11:30:30 +0000 |
commit | a1b71f21d18cef32dea4bec7e2e72ce6430305f0 (patch) | |
tree | 4e5d6e7f6a6dd08188264e0f4697b82e42936912 /gcc/java/xref.c | |
parent | 90d8d79460d7c0a12f21f8c4f5792537d2c4ea0b (diff) | |
download | ppe42-gcc-a1b71f21d18cef32dea4bec7e2e72ce6430305f0.tar.gz ppe42-gcc-a1b71f21d18cef32dea4bec7e2e72ce6430305f0.zip |
Warning fixes:
* class.c (build_utf8_ref): Initialize variable `field'.
* decl.c (init_decl_processing): Initialize variable `field'.
* expr.c (build_known_method_ref): Mark parameters `method_type',
`method_signature' and `arg_list' with ATTRIBUTE_UNUSED.
(process_jvm_instruction): Likewise for parameter `length'.
* jvspec.c (lang_specific_driver): Mark variables `saw_math',
`saw_libc', `saw_gc', `saw_threadlib' and `saw_libgcj' with
ATTRIBUTE_UNUSED.
* parse.y (maybe_generate_clinit): Remove unused variable
`has_non_primitive_fields'.
(find_in_imports_on_demand): Initialize variables `node_to_use'
and `cl'.
(patch_binop): Likewise for variable `prom_type'.
(patch_unaryop): Likewise for variable `prom_type'.
* verify.c (verify_jvm_instructions): Likewise for variable `last'.
* xref.c (xref_table): Add missing initializer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27030 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/xref.c')
-rw-r--r-- | gcc/java/xref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/xref.c b/gcc/java/xref.c index 8835e8dfcac..8fd51804819 100644 --- a/gcc/java/xref.c +++ b/gcc/java/xref.c @@ -35,7 +35,7 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ static xref_flag_table xref_table [] = { - {NULL, NULL, NULL}, + {NULL, NULL, NULL, NULL}, }; /* Decode an xref flag value. Return 0 if the flag wasn't found. */ |