diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-25 04:52:38 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-11-25 04:52:38 +0000 |
commit | ef43e9983dfaa981d443e26a2351848b0d9f27cc (patch) | |
tree | bbf83ed67944b9d6b349a08a6e0a69692b34e2e3 /gcc/graphite-clast-to-gimple.c | |
parent | 7bf7d520ef11ffbfa97c8798870d16ccf5b7d815 (diff) | |
download | gcc-ef43e9983dfaa981d443e26a2351848b0d9f27cc.tar.gz |
2009-10-05 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (build_cloog_prog): Use pbb_index.
* graphite-interchange.c (pbb_do_interchange): Same.
* graphite-poly.c (print_scattering_function): Same.
(debug_pdrs): Same.
* graphite-poly.h (pbb_loop): New.
* graphite-sese-to-poly.c (create_linear_expr_from_tree): Use pbb_loop.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154557 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 5da15e06659..795bb6a678b 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -921,7 +921,7 @@ build_cloog_prog (scop_p scop, CloogProgram *prog) continue; /* Build the new statement and its block. */ - stmt = cloog_statement_alloc (GBB_BB (PBB_BLACK_BOX (pbb))->index); + stmt = cloog_statement_alloc (pbb_index (pbb)); block = cloog_block_alloc (stmt, 0, NULL, pbb_dim_iter_domain (pbb)); cloog_statement_set_usr (stmt, pbb); |