mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-20 17:40:46 +08:00
cfgrtl.c (rtl_verify_flow_info): Don't use INSN_P when checking if an unconditional return is followed by a barrier.
* cfgrtl.c (rtl_verify_flow_info): Don't use INSN_P when checking if an unconditional return is followed by a barrier. From-SVN: r90819
This commit is contained in:
parent
d6be0d7f2d
commit
26cae194f7
@ -1,3 +1,8 @@
|
||||
2004-11-17 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* cfgrtl.c (rtl_verify_flow_info): Don't use INSN_P when
|
||||
checking if an unconditional return is followed by a barrier.
|
||||
|
||||
2004-11-17 Jeff Law <law@redhat.com>
|
||||
|
||||
* tree-cfg.c (edge_to_cases): Renamed from edge_to_case_leader.
|
||||
|
@ -2256,8 +2256,7 @@ rtl_verify_flow_info (void)
|
||||
}
|
||||
}
|
||||
|
||||
if (INSN_P (x)
|
||||
&& JUMP_P (x)
|
||||
if (JUMP_P (x)
|
||||
&& returnjump_p (x) && ! condjump_p (x)
|
||||
&& ! (NEXT_INSN (x) && BARRIER_P (NEXT_INSN (x))))
|
||||
fatal_insn ("return not followed by barrier", x);
|
||||
|
Loading…
x
Reference in New Issue
Block a user