diff options
author | miyuki <miyuki@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-04 15:01:46 +0000 |
---|---|---|
committer | miyuki <miyuki@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-11-04 15:01:46 +0000 |
commit | 29134d13431e7bd17d904a07f04fb5ac77da6dfa (patch) | |
tree | c74e9331855a085ae3e13ae1ba3f18655fb151da /gcc/sese.h | |
parent | 5e8689fb08c2687bad1165612b8568d1f8f6d69b (diff) | |
download | gcc-29134d13431e7bd17d904a07f04fb5ac77da6dfa.tar.gz |
ENABLE_CHECKING refactoring: remove remaining occurrences
libcpp/
* config.in: Regenerate.
* configure: Regenerate.
* configure.ac: Remove ENABLE_CHECKING.
gcc/
* cfganal.c (inverted_post_order_compute): Remove conditional
compilation, use flag_checking.
* config.in: Regenerate.
* configure: Regenerate.
* configure.ac: Remove ENABLE_CHECKING.
* genconditions.c: Do not #undef ENABLE_CHECKING.
* sese.h (bb_in_region): Comment out broken check.
* tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa_1): Remove
conditional compilation, use flag_checking.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@229758 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sese.h')
-rw-r--r-- | gcc/sese.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/gcc/sese.h b/gcc/sese.h index d2ad9bde04b..98ab4911e20 100644 --- a/gcc/sese.h +++ b/gcc/sese.h @@ -108,16 +108,18 @@ sese_nb_params (sese_info_p region) static inline bool bb_in_region (basic_block bb, basic_block entry, basic_block exit) { -#ifdef ENABLE_CHECKING - { - edge e; - edge_iterator ei; - - /* Check that there are no edges coming in the region: all the - predecessors of EXIT are dominated by ENTRY. */ - FOR_EACH_EDGE (e, ei, exit->preds) - dominated_by_p (CDI_DOMINATORS, e->src, entry); - } + /* FIXME: PR67842. */ +#if 0 + if (flag_checking) + { + edge e; + edge_iterator ei; + + /* Check that there are no edges coming in the region: all the + predecessors of EXIT are dominated by ENTRY. */ + FOR_EACH_EDGE (e, ei, exit->preds) + gcc_assert (dominated_by_p (CDI_DOMINATORS, e->src, entry)); + } #endif return dominated_by_p (CDI_DOMINATORS, bb, entry) |