diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-29 20:25:23 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-29 20:25:23 +0000 |
commit | 04bd1b812339656ba9b4d7926930d0e0e4afb508 (patch) | |
tree | 74912e962f9e22efafe3a42bf74230ec53807486 /gcc/tree-vect-analyze.c | |
parent | 15927527e1d3d828a27a4062de5f08f4f6dca49d (diff) | |
download | gcc-04bd1b812339656ba9b4d7926930d0e0e4afb508.tar.gz |
* tree-loop-linear.c (compute_data_dependences_for_loop): Adjust calls.
* tree-data-ref.c (find_data_references_in_loop,
compute_data_dependences_for_loop): Use pointers to VEC.
(analyze_all_data_dependences): Adjust calls.
* tree-data-ref.h (find_data_references_in_loop,
compute_data_dependences_for_loop): Adjust declarations.
* tree-vect-analyze.c (vect_analyze_data_refs): Adjust call to
compute_data_dependences_for_loop.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112507 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vect-analyze.c')
-rw-r--r-- | gcc/tree-vect-analyze.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vect-analyze.c b/gcc/tree-vect-analyze.c index f6319428552..b031ceb1640 100644 --- a/gcc/tree-vect-analyze.c +++ b/gcc/tree-vect-analyze.c @@ -1334,8 +1334,8 @@ vect_analyze_data_refs (loop_vec_info loop_vinfo) fprintf (vect_dump, "=== vect_analyze_data_refs ==="); compute_data_dependences_for_loop (loop, false, - LOOP_VINFO_DATAREFS (loop_vinfo), - LOOP_VINFO_DDRS (loop_vinfo)); + &LOOP_VINFO_DATAREFS (loop_vinfo), + &LOOP_VINFO_DDRS (loop_vinfo)); /* Go through the data-refs, check that the analysis succeeded. Update pointer from stmt_vec_info struct to DR and vectype. */ |