diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2009-11-25 05:25:43 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2009-11-25 05:25:43 +0000 |
commit | 6c6f84d77276e4edd3abc52e7a19b6c6881ef6d7 (patch) | |
tree | a16c5437c17c615f8dae61ea40b98656d3926d38 /gcc/sese.c | |
parent | 585b3e19fe12eb1525ba20557aa993233cc5fab3 (diff) | |
download | gcc-6c6f84d77276e4edd3abc52e7a19b6c6881ef6d7.tar.gz |
graphite-clast-to-gimple.c (gloog): Do not call sese_reset_aux_in_loops.
2009-10-26 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (gloog): Do not call
sese_reset_aux_in_loops.
* graphite-sese-to-poly.c (build_loop_iteration_domains): Pass an
extra argument for domains. Do not use loop->aux.
(build_scop_iteration_domain): Initialize and free domains, pass it
to build_loop_iteration_domains and extract the information from
domains. Do not use loop->aux.
* sese.c (sese_reset_aux_in_loops): Removed.
* sese.h (sese_reset_aux_in_loops): Removed.
From-SVN: r154627
Diffstat (limited to 'gcc/sese.c')
-rw-r--r-- | gcc/sese.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/sese.c b/gcc/sese.c index 917adbdf256..76c92bd08b7 100644 --- a/gcc/sese.c +++ b/gcc/sese.c @@ -1458,18 +1458,6 @@ move_sese_in_condition (sese region) return if_region; } -/* Reset the loop->aux pointer for all loops in REGION. */ - -void -sese_reset_aux_in_loops (sese region) -{ - int i; - loop_p loop; - - for (i = 0; VEC_iterate (loop_p, SESE_LOOP_NEST (region), i, loop); i++) - loop->aux = NULL; -} - /* Returns the scalar evolution of T in REGION. Every variable that is not defined in the REGION is considered a parameter. */ |