Commit 5dab4eb7 by Bernd Schmidt Committed by Bernd Schmidt

jump.c (mark_jump_label): Treat SEQUENCE specially.

	* jump.c (mark_jump_label): Treat SEQUENCE specially.

From-SVN: r123096
parent 7f483eec
2007-03-20 Bernd Schmidt <bernd.schmidt@analog.com>
* jump.c (mark_jump_label): Treat SEQUENCE specially.
2007-03-20 Nathan Sidwell <nathan@codesourcery.com> 2007-03-20 Nathan Sidwell <nathan@codesourcery.com>
* config/vxlib.c (tls_delete_hook): Use TCB for kernel tasks. * config/vxlib.c (tls_delete_hook): Use TCB for kernel tasks.
......
...@@ -992,6 +992,12 @@ mark_jump_label (rtx x, rtx insn, int in_mem) ...@@ -992,6 +992,12 @@ mark_jump_label (rtx x, rtx insn, int in_mem)
in_mem = 1; in_mem = 1;
break; break;
case SEQUENCE:
for (i = 0; i < XVECLEN (x, 0); i++)
mark_jump_label (PATTERN (XVECEXP (x, 0, i)),
XVECEXP (x, 0, i), 0);
return;
case SYMBOL_REF: case SYMBOL_REF:
if (!in_mem) if (!in_mem)
return; return;
......
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