From 5bdb5789f1215e91ab0d08aad85acbcefe49d907 Mon Sep 17 00:00:00 2001 From: David Malcolm Date: Tue, 31 Dec 2013 05:30:35 -0500 Subject: [PATCH 042/159] FIXME: types within compare-elim.c --- gcc/compare-elim.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gcc/compare-elim.c b/gcc/compare-elim.c index 847c891..d8a58ef 100644 --- a/gcc/compare-elim.c +++ b/gcc/compare-elim.c @@ -81,7 +81,7 @@ along with GCC; see the file COPYING3. If not see struct comparison_use { /* The instruction in which the result of the compare is used. */ - rtx insn; + rtx_base_insn insn; /* The location of the flags register within the use. */ rtx *loc; /* The comparison code applied against the flags register. */ @@ -91,10 +91,10 @@ struct comparison_use struct comparison { /* The comparison instruction. */ - rtx insn; + rtx_base_insn insn; /* The insn prior to the comparison insn that clobbers the flags. */ - rtx prev_clobber; + rtx_base_insn prev_clobber; /* The two values being compared. These will be either REGs or constants. */ @@ -191,7 +191,7 @@ arithmetic_flags_clobber_p (rtx insn) it in CMP; otherwise indicate that we've missed a use. */ static void -find_flags_uses_in_insn (struct comparison *cmp, rtx insn) +find_flags_uses_in_insn (struct comparison *cmp, rtx_base_insn insn) { df_ref *use_rec, use; @@ -260,7 +260,7 @@ void find_comparison_dom_walker::before_dom_children (basic_block bb) { struct comparison *last_cmp; - rtx insn, next, last_clobber; + rtx_base_insn insn, next, last_clobber; bool last_cmp_valid; bitmap killed; @@ -291,7 +291,7 @@ find_comparison_dom_walker::before_dom_children (basic_block bb) { rtx src; - next = (insn == BB_END (bb) ? NULL_RTX : NEXT_INSN (insn)); + next = (insn == BB_END (bb) ? NULL_RTX_BASE_INSN : NEXT_INSN (insn)); if (!NONDEBUG_INSN_P (insn)) continue; -- 1.7.11.7