diff options
author | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-20 23:43:33 +0000 |
---|---|---|
committer | bernds <bernds@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-20 23:43:33 +0000 |
commit | 7602144104e3056b755cf0b2ca0338bf17ff246d (patch) | |
tree | 469dbde82156482127405867b2bff4d7cf48dc7e /gcc/jump.c | |
parent | c634bedf776e15bc970b348b9ed85e2a2b1d7fd8 (diff) | |
download | gcc-7602144104e3056b755cf0b2ca0338bf17ff246d.tar.gz |
* jump.c (mark_jump_label): Treat SEQUENCE specially.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123096 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/jump.c')
-rw-r--r-- | gcc/jump.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/jump.c b/gcc/jump.c index fa96a302954..e61e2fba9d7 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -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; |