From df1edf8f8ba0a9b621ba86b985ee7905ba20cfdf Mon Sep 17 00:00:00 2001 From: Sebastian Pop Date: Fri, 13 Jun 2008 13:48:36 -0500 Subject: [PATCH] CloogDomain is a union of convex polyhedra --- include/cloog/ppl_backend.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/cloog/ppl_backend.h b/include/cloog/ppl_backend.h index ba1d41f..d15fa93 100644 --- a/include/cloog/ppl_backend.h +++ b/include/cloog/ppl_backend.h @@ -35,8 +35,9 @@ cloog_finalize (void) * a CloogDomain will be freed, we will decrement the active reference counter * and actually free it if its value is zero. */ -struct cloogdomain -{ Polyhedron * _polyhedron ; /**< The polyhedral domain. */ +typedef struct cloogdomain +{ + Polyhedron *_polyhedron ; /**< A convex polyhedral domain. */ int _references ; /**< Number of references to this structure. */ -} ; -typedef struct cloogdomain CloogDomain ; + struct cloogdomain *_next; /**< Next polyhedra in the union of convex polyhedra. */ +} CloogDomain; -- 2.11.4.GIT