Commit 2ca19d5e by Jason Eckhardt Committed by Jason Eckhardt

* flow.c (verify_flow_info): Check for unconditional return.

From-SVN: r32565
parent 9525c690
Wed Mar 15 14:28:54 2000 Jason Eckhardt <jle@cygnus.com>
* flow.c (verify_flow_info): Check for unconditional return.
Wed Mar 15 11:34:27 2000 Jim Wilson <wilson@cygnus.com>
* config/ia64/ia64.md (restore_stack_nonlocal): New.
......
......@@ -5991,7 +5991,7 @@ verify_flow_info ()
if (GET_RTX_CLASS (GET_CODE (x)) == 'i'
&& GET_CODE (x) == JUMP_INSN
&& returnjump_p (x)
&& returnjump_p (x) && ! condjump_p (x)
&& ! (NEXT_INSN (x) && GET_CODE (NEXT_INSN (x)) == BARRIER))
fatal_insn ("Return not followed by barrier", x);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment