]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/java/verify-impl.c
tree-ssa-structalias.c (merge_graph_nodes): Fix uninitialised warnings.
[gcc.git] / gcc / java / verify-impl.c
index f78763874817943830fb12cd04eb6174a7b7087a..42dfc6f9eeb25a250c6e162b7324abdd870d4b1e 100644 (file)
@@ -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);
This page took 0.029482 seconds and 5 git commands to generate.