jump.c (mark_jump_label): Treat SEQUENCE specially.

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

From-SVN: r123096
This commit is contained in:
Bernd Schmidt 2007-03-20 23:43:33 +00:00 committed by Bernd Schmidt
parent 7f483eece3
commit 5dab4eb703
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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>
* config/vxlib.c (tls_delete_hook): Use TCB for kernel tasks.

View File

@ -992,6 +992,12 @@ mark_jump_label (rtx x, rtx insn, int in_mem)
in_mem = 1;
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:
if (!in_mem)
return;