diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-11 20:30:49 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-11 20:30:49 +0000 |
commit | 04b8cadbd8f0d01ab7d38ed6c44c4445f4948bef (patch) | |
tree | 10ff642cb81c3eff319faa2e86a57a45bcb69f28 /gcc/graphite-cloog-util.h | |
parent | 08a88144982a21f7275eb430fe0448d75a2c580a (diff) | |
download | gcc-04b8cadbd8f0d01ab7d38ed6c44c4445f4948bef.tar.gz |
Adapt to new CloogScattering abstraction, introduced in official CLooG versions (CLOOG_ORG).
2010-07-27 Andreas Simbuerger <simbuerg@fim.uni-passau.de>
* graphite-clast-to-gimple.c (free_scattering): Change
CloogDomainList/CloogDomain to CloogScatteringList/CloogScattering
(CLOOG_ORG).
(build_cloog_prog): Same.
* graphite-cloog-compat.h (cloog_domain): Removed.
(cloog_scattering): New.
(cloog_set_domain): Removed.
(cloog_set_scattering): New.
(cloog_next_domain): Removed.
(cloog_next_scattering): New.
(cloog_set_next_domain): Removed.
(cloog_set_next_scattering): New.
(CloogScatteringList): New.
(CloogScattering): New.
(cloog_scattering_free): New.
(new_Cloog_Scattering_from_ppl_Polyhedron): New.
* graphite-cloog-util.c (new_Cloog_Scattering_from_ppl_Polyhedron):
New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163165 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-cloog-util.h')
-rw-r--r-- | gcc/graphite-cloog-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/graphite-cloog-util.h b/gcc/graphite-cloog-util.h index eaa48f33f67..d7758ce197d 100644 --- a/gcc/graphite-cloog-util.h +++ b/gcc/graphite-cloog-util.h @@ -27,6 +27,8 @@ along with GCC; see the file COPYING3. If not see CloogMatrix *new_Cloog_Matrix_from_ppl_Polyhedron (ppl_const_Polyhedron_t); CloogDomain *new_Cloog_Domain_from_ppl_Polyhedron (ppl_const_Polyhedron_t, int, CloogState *); +CloogScattering *new_Cloog_Scattering_from_ppl_Polyhedron + (ppl_const_Polyhedron_t, int, int, CloogState *); CloogDomain * new_Cloog_Domain_from_ppl_Pointset_Powerset (ppl_Pointset_Powerset_C_Polyhedron_t, int, CloogState *); void new_C_Polyhedron_from_Cloog_Matrix (ppl_Polyhedron_t *, CloogMatrix *); |