From ff81832f59cff40ccee928693238c92c0347a50e Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Thu, 3 Jan 2002 09:18:22 +0000 Subject: final.c (final_scan_insn): Change 0 -> NULL_RTX in FIND_REG_INC_NOTE call. 2002-01-02 Eric Christopher * final.c (final_scan_insn): Change 0 -> NULL_RTX in FIND_REG_INC_NOTE call. Update copyright. * loop.c (canonicalize_condition): Ditto. * reorg.c (delete_scheduled_jump): Ditto. From-SVN: r48506 --- gcc/loop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/loop.c') diff --git a/gcc/loop.c b/gcc/loop.c index 6ebd7d5..4200470 100644 --- a/gcc/loop.c +++ b/gcc/loop.c @@ -3830,7 +3830,7 @@ emit_prefetch_instructions (loop) || GET_CODE (iv->mult_val) != CONST_INT /* Don't handle reversed order prefetches, since they are usually ineffective. Later we may be able to reverse such BIVs. */ - || (PREFETCH_NO_REVERSE_ORDER + || (PREFETCH_NO_REVERSE_ORDER && (stride = INTVAL (iv->mult_val) * basestride) < 0) /* Prefetching of accesses with such an extreme stride is probably not worthwhile, either. */ @@ -9087,7 +9087,7 @@ canonicalize_condition (insn, cond, reverse, earliest, want_reg) if ((prev = prev_nonnote_insn (prev)) == 0 || GET_CODE (prev) != INSN - || FIND_REG_INC_NOTE (prev, 0)) + || FIND_REG_INC_NOTE (prev, NULL_RTX)) break; set = set_of (op0, prev); -- cgit v1.1