summaryrefslogtreecommitdiff
path: root/gcc/graphite-clast-to-gimple.h
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-12 22:05:38 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2011-03-12 22:05:38 +0000
commit98b9957e11fc1fced5c49ac00c96fb627b67255d (patch)
tree7668cf622bac8898324ae5e873bfafe28e1a1293 /gcc/graphite-clast-to-gimple.h
parente8cf572a1d1dc388cc111e09e28ab543af157d19 (diff)
downloadgcc-98b9957e11fc1fced5c49ac00c96fb627b67255d.tar.gz
Fix PR47127: call cloog_state_malloc and cloog_state_free only once.
2011-03-12 Sebastian Pop <sebastian.pop@amd.com> PR tree-optimization/47127 * graphite-clast-to-gimple.c (build_cloog_prog): Removed state parameter. (set_cloog_options): Same. (scop_to_clast): Same. (print_clast_stmt): Do not call cloog_state_malloc and cloog_state_free. (print_generated_program): Same. (gloog): Same. * graphite-clast-to-gimple.h (cloog_state): Declared. (scop_to_clast): Adjust declaration. * graphite.c (cloog_state): Defined here. (graphite_initialize): Call cloog_state_malloc. (graphite_finalize): Call cloog_state_free. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170907 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-clast-to-gimple.h')
-rw-r--r--gcc/graphite-clast-to-gimple.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/graphite-clast-to-gimple.h b/gcc/graphite-clast-to-gimple.h
index cd3cbcaebea..9d599d6d075 100644
--- a/gcc/graphite-clast-to-gimple.h
+++ b/gcc/graphite-clast-to-gimple.h
@@ -22,6 +22,9 @@ along with GCC; see the file COPYING3. If not see
#define GCC_GRAPHITE_CLAST_TO_GIMPLE_H
#include "graphite-cloog-util.h"
+
+extern CloogState *cloog_state;
+
/* Data structure for CLooG program representation. */
typedef struct cloog_prog_clast {
@@ -35,10 +38,10 @@ typedef struct bb_pbb_def
{
basic_block bb;
poly_bb_p pbb;
-}bb_pbb_def;
+} bb_pbb_def;
extern bool gloog (scop_p, htab_t);
-extern cloog_prog_clast scop_to_clast (scop_p, CloogState *);
+extern cloog_prog_clast scop_to_clast (scop_p);
extern void debug_clast_stmt (struct clast_stmt *);
extern void print_clast_stmt (FILE *, struct clast_stmt *);