Commit 309ebcd0 by Alan Modra

rs6000.c (get_next_active_insn): Simplify test for stack_tie.

	* config/rs6000/rs6000.c (get_next_active_insn): Simplify test for
	stack_tie.

From-SVN: r104173
parent 8d099498
2005-09-12 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (get_next_active_insn): Simplify test for
stack_tie.
2005-09-12 Andrew Pinski <pinskia@physics.uc.edu>
* tree-ssa-dse.c (dse_optimize_stmt): Fix up all of V_MAY_DEF and
......@@ -20,7 +25,7 @@
2005-09-12 Bernd Schmidt <bernd.schmidt@analog.com>
* config/bfin/bfin.c (legimitize_pic_address): Use gen_const_mem.
* config/bfin/bfin.c (legimitize_pic_address): Use gen_const_mem.
2005-09-12 Alan Modra <amodra@bigpond.net.au>
......
......@@ -16646,9 +16646,7 @@ get_next_active_insn (rtx insn, rtx tail)
|| (NONJUMP_INSN_P (insn)
&& GET_CODE (PATTERN (insn)) != USE
&& GET_CODE (PATTERN (insn)) != CLOBBER
&& !(GET_CODE (PATTERN (insn)) == SET
&& GET_CODE (XEXP (PATTERN (insn), 1)) == UNSPEC
&& XINT (XEXP (PATTERN (insn), 1), 1) == UNSPEC_TIE)))
&& INSN_CODE (insn) != CODE_FOR_stack_tie))
break;
}
return insn;
......
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