diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-16 21:42:55 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-16 21:42:55 +0000 |
commit | 50ed75ab8c3b4ba1316ed2725338745387ebf2d4 (patch) | |
tree | 7b1375fb506b484993d4cdccfe0a277758448a5f /gcc/tree-vect-analyze.c | |
parent | 7f1fb0832a9685eb329af5d37b6b67e8a94c28cb (diff) | |
download | gcc-50ed75ab8c3b4ba1316ed2725338745387ebf2d4.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96581 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vect-analyze.c')
-rw-r--r-- | gcc/tree-vect-analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-vect-analyze.c b/gcc/tree-vect-analyze.c index df2e88282cf..0ee6f0c362c 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. */ |