summaryrefslogtreecommitdiff
path: root/gcc/graphite-sese-to-poly.c
diff options
context:
space:
mode:
authorSebastian Pop <sebastian.pop@amd.com>2009-11-25 05:20:01 +0000
committerSebastian Pop <spop@gcc.gnu.org>2009-11-25 05:20:01 +0000
commit917f481ac69c2b44837ff294188fc5124397b078 (patch)
tree71be5ad286c40ca0078d6c6970ca9ea637ab30a5 /gcc/graphite-sese-to-poly.c
parent2b178a5f0d165007ff622b9b1bd76bebbca50a5b (diff)
downloadgcc-917f481ac69c2b44837ff294188fc5124397b078.tar.gz
graphite-sese-to-poly.c (build_alias_set_optimal_p): Initialize all_components_are_cliques to 1.
2009-10-20 Sebastian Pop <sebastian.pop@amd.com> * graphite-sese-to-poly.c (build_alias_set_optimal_p): Initialize all_components_are_cliques to 1. From-SVN: r154615
Diffstat (limited to 'gcc/graphite-sese-to-poly.c')
-rw-r--r--gcc/graphite-sese-to-poly.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/graphite-sese-to-poly.c b/gcc/graphite-sese-to-poly.c
index b0f385b0a20..06a98a3b412 100644
--- a/gcc/graphite-sese-to-poly.c
+++ b/gcc/graphite-sese-to-poly.c
@@ -1897,7 +1897,8 @@ build_alias_set_optimal_p (VEC (data_reference_p, heap) *drs)
int *all_vertices;
int *vertices;
struct graph_edge *e;
- int this_component_is_clique, all_components_are_cliques;
+ int this_component_is_clique;
+ int all_components_are_cliques = 1;
for (i = 0; VEC_iterate (data_reference_p, drs, i, dr1); i++)
for (j = i+1; VEC_iterate (data_reference_p, drs, j, dr2); j++)