diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 0ec7f85..151e948 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -13403,14 +13403,14 @@ distribute_notes (rtx notes, rtx_insn *from_insn, rtx_insn *i3, rtx_insn *i2, if (reg_mentioned_p (XEXP (note, 0), PATTERN (i3)) || ((tem_note = find_reg_note (i3, REG_EQUAL, NULL_RTX)) && GET_CODE (XEXP (tem_note, 0)) == LABEL_REF - && XEXP (XEXP (tem_note, 0), 0) == XEXP (note, 0))) + && LABEL_REF_LABEL (XEXP (tem_note, 0)) == XEXP (note, 0))) place = i3; if (i2 && (reg_mentioned_p (XEXP (note, 0), PATTERN (i2)) || ((tem_note = find_reg_note (i2, REG_EQUAL, NULL_RTX)) && GET_CODE (XEXP (tem_note, 0)) == LABEL_REF - && XEXP (XEXP (tem_note, 0), 0) == XEXP (note, 0)))) + && LABEL_REF_LABEL (XEXP (tem_note, 0)) == XEXP (note, 0)))) { if (place) place2 = i2; |