diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-28 20:32:20 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-08-28 20:32:20 +0000 |
commit | 55c54afb94bd9a36803c2bec7fb072c3f4d1f427 (patch) | |
tree | eb994ffaf906b637a02af54dd4f215d392721d1e /gcc/graphite-ppl.c | |
parent | 96b6d5d7e6e8af1f1c2332e7196bda28d41a2f79 (diff) | |
download | gcc-55c54afb94bd9a36803c2bec7fb072c3f4d1f427.tar.gz |
2009-08-28 Konrad Trifunovic <konrad.trifunovic@gmail.com>
* graphite-ppl.c (ppl_max_for_le): Renamed ppl_max_for_le_pointset.
* graphite-ppl.h (ppl_max_for_le): Renamed ppl_max_for_le_pointset.
* graphite-poly.c (pbb_number_of_iterations): Rename ppl_max_for_le.
* graphite-interchange.c (build_linearized_memory_access): Same.
(memory_stride_in_loop): Same.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151184 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-ppl.c')
-rw-r--r-- | gcc/graphite-ppl.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/graphite-ppl.c b/gcc/graphite-ppl.c index ca65c8534b8..3e84dcf9039 100644 --- a/gcc/graphite-ppl.c +++ b/gcc/graphite-ppl.c @@ -614,11 +614,12 @@ ppl_read_polyhedron_matrix (ppl_Polyhedron_t *ph, FILE *file) cloog_matrix_free (mat); } -/* Return in RES the maximum of the linear expression LE on polyhedron PS. */ +/* Return in RES the maximum of the linear expression LE on the + pointset powerset of polyhedra PS. */ void -ppl_max_for_le (ppl_Pointset_Powerset_C_Polyhedron_t ps, - ppl_Linear_Expression_t le, Value res) +ppl_max_for_le_pointset (ppl_Pointset_Powerset_C_Polyhedron_t ps, + ppl_Linear_Expression_t le, Value res) { ppl_Coefficient_t num, denom; Value dv, nv; |