Commit 5dd34fe0 by Herman A.J. ten Brugge Committed by Jeff Law

* jump.c (delete_barrier_successors) Match (set (pc) (pc)) insn

        exactly.

From-SVN: r28817
parent bf8a5a35
1999-08-24 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
* jump.c (delete_barrier_successors) Match (set (pc) (pc)) insn
exactly.
Mon Aug 23 23:35:52 1999 Matthias Klose <doko@cs.tu-berlin.de>
* cpp.texi: Add a node documenting macro varargs (copied
......
......@@ -2166,6 +2166,7 @@ delete_barrier_successors (f)
gcse. We eliminate such insns now to avoid having them
cause problems later. */
else if (GET_CODE (insn) == JUMP_INSN
&& GET_CODE (PATTERN (insn)) == SET
&& SET_SRC (PATTERN (insn)) == pc_rtx
&& SET_DEST (PATTERN (insn)) == pc_rtx)
insn = delete_insn (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