diff options
| author | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-22 07:31:32 +0000 |
|---|---|---|
| committer | manfred <manfred@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-22 07:31:32 +0000 |
| commit | 8102ba14faddc82a73fc2daa024cd3f4f81513aa (patch) | |
| tree | cb073ef49c05b064e1e54eeefa318120ca913ed7 /gcc/java/verify-impl.c | |
| parent | 755ec370611c2a6e6b023639d718a823f24aac44 (diff) | |
| download | ppe42-gcc-8102ba14faddc82a73fc2daa024cd3f4f81513aa.tar.gz ppe42-gcc-8102ba14faddc82a73fc2daa024cd3f4f81513aa.zip | |
gcc/ChangeLog:
* tree-ssa-structalias.c (merge_graph_nodes): Fix uninitialised
warnings.
(int_add_graph_edge): Likewise.
(collapse_nodes): Likewise.
(process_unification_queue): Likewise.
gcc/cp/ChangeLog:
* parser.c (cp_parser_declaration): Fix unitialised warnings.
gcc/fortran/ChangeLog:
* match.c (gfc_match_symbol): Fix uninitialised warnings.
* matchexp.c (gfc_match_expr): Likewise.
gcc/java/ChangeLog:
* verify-impl.c (check_class_constant): Fix uninitialised warnings.
(check_constant): Likewise.
(check_wide_constant): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102273 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/verify-impl.c')
| -rw-r--r-- | gcc/java/verify-impl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/verify-impl.c b/gcc/java/verify-impl.c index f7876387481..42dfc6f9eeb 100644 --- a/gcc/java/verify-impl.c +++ b/gcc/java/verify-impl.c @@ -1946,7 +1946,7 @@ check_pool_index (int index) static type check_class_constant (int index) { - type t; + type t = { 0, 0, 0 }; vfy_constants *pool; check_pool_index (index); @@ -1963,7 +1963,7 @@ check_class_constant (int index) static type check_constant (int index) { - type t; + type t = { 0, 0, 0 }; vfy_constants *pool; check_pool_index (index); @@ -1983,7 +1983,7 @@ check_constant (int index) static type check_wide_constant (int index) { - type t; + type t = { 0, 0, 0 }; vfy_constants *pool; check_pool_index (index); |

