diff options
author | Konrad Trifunovic <konrad.trifunovic@gmail.com> | 2009-08-28 20:32:20 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2009-08-28 20:32:20 +0000 |
commit | 059a5f9f1cbfacf7f1102f1e03c62d9da453879c (patch) | |
tree | eb994ffaf906b637a02af54dd4f215d392721d1e /gcc/graphite-ppl.c | |
parent | afae02072cf05ccf15d840f8194490902b97ab32 (diff) | |
download | gcc-059a5f9f1cbfacf7f1102f1e03c62d9da453879c.zip gcc-059a5f9f1cbfacf7f1102f1e03c62d9da453879c.tar.gz gcc-059a5f9f1cbfacf7f1102f1e03c62d9da453879c.tar.bz2 |
graphite-ppl.c (ppl_max_for_le): Renamed ppl_max_for_le_pointset.
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.
From-SVN: r151184
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 ca65c85..3e84dcf 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; |