diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-05-01 12:11:35 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-05-01 12:11:35 +0000 |
commit | 6496a589dfe14041da10691b70be2e1825829c2b (patch) | |
tree | 8291109d2b67c4e545af01d31c07d304a1aa6fc8 /gcc/loop.c | |
parent | 4b48a93e898353dc4bbe1bec80ec56736fc16beb (diff) | |
download | gcc-6496a589dfe14041da10691b70be2e1825829c2b.zip gcc-6496a589dfe14041da10691b70be2e1825829c2b.tar.gz gcc-6496a589dfe14041da10691b70be2e1825829c2b.tar.bz2 |
bitmap.c: Change NULL_PTR to NULL or "(rtx*)0".
* bitmap.c: Change NULL_PTR to NULL or "(rtx*)0".
* c-common.c: Likewise.
* c-decl.c: Likewise.
* combine.c: Likewise.
* rs6000.c: Likewise.
* except.c: Likewise.
* explow.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* gcse.c: Likewise.
* integrate.c: Likewise.
* loop.c: Likewise.
* objc/objc-act.c: Likewise.
* recog.c: Likewise.
* reg-stack.c: Likewise.
* reload.c: Likewise.
* reload1.c: Likewise.
* simplify-rtx.c: Likewise.
* stmt.c: Likewise.
* varasm.c: Likewise.
From-SVN: r41722
Diffstat (limited to 'gcc/loop.c')
-rw-r--r-- | gcc/loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4602,7 +4602,7 @@ check_insn_for_givs (loop, p, not_every_iteration, maybe_multiple) record_giv (loop, v, p, src_reg, dest_reg, mult_val, add_val, ext_val, benefit, DEST_REG, not_every_iteration, - maybe_multiple, NULL_PTR); + maybe_multiple, (rtx*)0); } } @@ -8582,7 +8582,7 @@ get_condition_for_loop (loop, x) const struct loop *loop; rtx x; { - rtx comparison = get_condition (x, NULL_PTR); + rtx comparison = get_condition (x, (rtx*)0); if (comparison == 0 || ! loop_invariant_p (loop, XEXP (comparison, 0)) |