From 15e71938e12d2c4d89f0b35702234f47dc5b5272 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 24 Jun 2014 14:44:07 -0400 Subject: [PATCH 090/119] rtlanal.c: Use rtx_insn gcc/ * rtlanal.c (remove_reg_equal_equiv_notes_for_regno): Strengthen local "insn" from rtx to rtx_insn *. --- gcc/rtlanal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 6b457d4..3f77954 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -2100,7 +2100,7 @@ remove_reg_equal_equiv_notes_for_regno (unsigned int regno) over the head. We plan to drain the list anyway. */ while ((eq_use = DF_REG_EQ_USE_CHAIN (regno)) != NULL) { - rtx insn = DF_REF_INSN (eq_use); + rtx_insn *insn = DF_REF_INSN (eq_use); rtx note = find_reg_equal_equiv_note (insn); /* This assert is generally triggered when someone deletes a REG_EQUAL -- 1.8.5.3