aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-vect-analyze.c
diff options
context:
space:
mode:
authorDaniel Berlin <dberlin@dberlin.org>2005-03-16 21:42:55 +0000
committerDaniel Berlin <dberlin@gcc.gnu.org>2005-03-16 21:42:55 +0000
commite8b19a779dd9d676f5fa9cec25249b75def48c16 (patch)
tree7b1375fb506b484993d4cdccfe0a277758448a5f /gcc/tree-vect-analyze.c
parent930c1fc2a0d2819ae6a859676ae29687eafc2f74 (diff)
downloadgcc-e8b19a779dd9d676f5fa9cec25249b75def48c16.zip
gcc-e8b19a779dd9d676f5fa9cec25249b75def48c16.tar.gz
gcc-e8b19a779dd9d676f5fa9cec25249b75def48c16.tar.bz2
tree-vectorizer.c (new_vec_stmt_info): Initialize STMT_VINFO_SUBVARS to NULL.
2005-03-16 Daniel Berlin <dberlin@dberlin.org> * tree-vectorizer.c (new_vec_stmt_info): Initialize STMT_VINFO_SUBVARS to NULL. * tree-vect-analyze.c (vect_analyze_data_refs): Ditto. From-SVN: r96581
Diffstat (limited to 'gcc/tree-vect-analyze.c')
-rw-r--r--gcc/tree-vect-analyze.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-analyze.c b/gcc/tree-vect-analyze.c
index df2e882..0ee6f0c 100644
--- a/gcc/tree-vect-analyze.c
+++ b/gcc/tree-vect-analyze.c
@@ -1880,7 +1880,7 @@ vect_analyze_data_refs (loop_vec_info loop_vinfo)
tree scalar_type, vectype;
tree base, offset, misalign, step, tag;
bool base_aligned;
- subvar_t subvars;
+ subvar_t subvars = NULL;
/* Assumption: there exists a data-ref in stmt, if and only if
it has vuses/vdefs. */