diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-09 11:06:41 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-02-09 11:06:41 +0000 |
commit | aaf52ffbaf8c218eee58f8a521b6ee85aac795ef (patch) | |
tree | 6b24a29133ae24969b1e27da72dcf451d715b9fb /gcc/cfgrtl.c | |
parent | 6d405dc8312d54095318f1edfeda467dc1a4a2fe (diff) | |
download | gcc-aaf52ffbaf8c218eee58f8a521b6ee85aac795ef.tar.gz |
* cfgrtl.c (verify_flow_info): Use control_flow_insn_p.
* reload1.c (fixup_abnormal_edges): Split basic blocks when EH edges
possibly got duplicated.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@62599 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 07f4a8c0957..5209aa2b85f 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2008,9 +2008,7 @@ verify_flow_info () if (x == bb->end) break; - if (GET_CODE (x) == JUMP_INSN - || GET_CODE (x) == CODE_LABEL - || GET_CODE (x) == BARRIER) + if (control_flow_insn_p (x)) { error ("in basic block %d:", bb->index); fatal_insn ("flow control insn inside a basic block", x); |