diff options
Diffstat (limited to 'gcc/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 0e0f7e3..d9e60d3 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -3434,6 +3434,9 @@ label_is_jump_target_p (const_rtx label, const_rtx jump_insn) return true; } + if (find_reg_note (jump_insn, REG_LABEL_TARGET, label)) + return true; + return false; } |