diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2009-05-11 13:51:14 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-05-11 06:51:14 -0700 |
commit | df398a3708e64441d7842e5f69eb90d300ecf76f (patch) | |
tree | c7d6481d2898f098599a27b7af30b4348ad7293c /gcc/tree-vect-data-refs.c | |
parent | 4da39468e78f9bbc7abb34db5a71b3c8183e848a (diff) | |
download | gcc-df398a3708e64441d7842e5f69eb90d300ecf76f.zip gcc-df398a3708e64441d7842e5f69eb90d300ecf76f.tar.gz gcc-df398a3708e64441d7842e5f69eb90d300ecf76f.tar.bz2 |
tree-vect-data-refs.c (vect_analyze_group_access): Use HOST_WIDE_INT for gap.
2009-05-11 H.J. Lu <hongjiu.lu@intel.com>
* tree-vect-data-refs.c (vect_analyze_group_access): Use
HOST_WIDE_INT for gap.
From-SVN: r147375
Diffstat (limited to 'gcc/tree-vect-data-refs.c')
-rw-r--r-- | gcc/tree-vect-data-refs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vect-data-refs.c b/gcc/tree-vect-data-refs.c index 42854a0..443ecd0 100644 --- a/gcc/tree-vect-data-refs.c +++ b/gcc/tree-vect-data-refs.c @@ -1424,11 +1424,11 @@ vect_analyze_group_access (struct data_reference *dr) /* First stmt in the interleaving chain. Check the chain. */ gimple next = DR_GROUP_NEXT_DR (vinfo_for_stmt (stmt)); struct data_reference *data_ref = dr; - unsigned int count = 1, gaps = 0; + unsigned int count = 1; tree next_step; tree prev_init = DR_INIT (data_ref); gimple prev = stmt; - HOST_WIDE_INT diff, count_in_bytes; + HOST_WIDE_INT diff, count_in_bytes, gaps = 0; while (next) { |