decl.c (reshape_init_array): Initialize max_index_cst to fix bootstrap failure.
authorAndreas Tobler <a.tobler@schweiz.ch>
Tue, 21 Sep 2004 09:22:00 +0000 (11:22 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Tue, 21 Sep 2004 09:22:00 +0000 (11:22 +0200)
2004-09-21  Andreas Tobler  <a.tobler@schweiz.ch>

* decl.c (reshape_init_array): Initialize max_index_cst to fix
bootstrap failure.

From-SVN: r87798

gcc/cp/ChangeLog
gcc/cp/decl.c

index 6ddc16d3be8d3a55ecdba7d5b0e2aed380ae7621..99f3f3e07b0dffa71026bda684eea88cbc0fc03c 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-21  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * decl.c (reshape_init_array): Initialize max_index_cst to fix
+       bootstrap failure.
+
 2004-09-20  Mark Mitchell  <mark@codesourcery.com>
 
        PR c++/17530
index 282e5072dadf4c1b2a63bdbb34f1228f92b22a17..fbd27cee0db9ce69acbd95784c40547d1b46a849 100644 (file)
@@ -4159,7 +4159,7 @@ reshape_init_array (tree elt_type, tree max_index,
                    tree *initp, tree new_init)
 {
   bool sized_array_p = (max_index != NULL_TREE);
-  HOST_WIDE_INT max_index_cst;
+  HOST_WIDE_INT max_index_cst = 0;
   HOST_WIDE_INT index;
 
   if (sized_array_p)