OSDN Git Service

2010-04-04 Matthias Klose <doko@ubuntu.com>
authordoko <doko@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 5 Apr 2010 11:40:29 +0000 (11:40 +0000)
committerMasaki Muranaka <monaka@monami-software.com>
Sun, 23 May 2010 00:44:07 +0000 (09:44 +0900)
* graphite-sese-to-poly.c (translate_scalar_reduction_to_array):
Initialize variable.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157965 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/graphite-sese-to-poly.c

index 2eb77c4..4fd4c49 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-04  Matthias Klose  <doko@ubuntu.com>
+
+       * graphite-sese-to-poly.c (translate_scalar_reduction_to_array):
+       Initialize variable.
+
 2010-04-03  Richard Guenther  <rguenther@suse.de>
 
        PR middle-end/42509
index e7aa556..d4bb8a3 100644 (file)
@@ -2787,7 +2787,7 @@ translate_scalar_reduction_to_array (VEC (gimple, heap) *in,
 {
   unsigned int i;
   gimple loop_phi;
-  tree red;
+  tree red = NULL_TREE;
 
   for (i = 0; VEC_iterate (gimple, in, i, loop_phi); i++)
     {