From 9714cf4399fc4833c9055d4a0e5c5cc504226c44 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Wed, 2 May 2001 14:31:45 +0000 Subject: c-lex.c: NULL_PTR -> NULL. * c-lex.c: NULL_PTR -> NULL. * cse.c: Likewise. * emit-rtl.c: Likewise. * gcse.c: Likewise. * genpeep.c: Likewise. * jump.c: Likewise. * mips-tdump.c: Likewise. * reload1.c: Likewise. * rtlanal.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * toplev.c: Likewise. From-SVN: r41761 --- gcc/reload1.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'gcc/reload1.c') diff --git a/gcc/reload1.c b/gcc/reload1.c index e3bd7bb..f12e8f4 100644 --- a/gcc/reload1.c +++ b/gcc/reload1.c @@ -678,7 +678,7 @@ reload (first, global) /* The two pointers used to track the true location of the memory used for label offsets. */ - char *real_known_ptr = NULL_PTR; + char *real_known_ptr = NULL; int (*real_at_ptr)[NUM_ELIMINABLE_REGS]; /* Make sure even insns with volatile mem refs are recognizable. */ @@ -5617,7 +5617,7 @@ choose_reload_regs (chain) { register rtx equiv = find_equiv_reg (search_equiv, insn, rld[r].class, - -1, NULL_PTR, 0, rld[r].mode); + -1, NULL, 0, rld[r].mode); int regno = 0; if (equiv != 0) @@ -6164,7 +6164,7 @@ emit_input_reload_insns (chain, rl, old, j) oldequiv = find_equiv_reg (old, insn, rld[rl->secondary_in_reload].class, - -1, NULL_PTR, 0, mode); + -1, NULL, 0, mode); #endif /* If reloading from memory, see if there is a register @@ -6180,8 +6180,7 @@ emit_input_reload_insns (chain, rl, old, j) || (GET_CODE (old) == REG && REGNO (old) >= FIRST_PSEUDO_REGISTER && reg_renumber[REGNO (old)] < 0))) - oldequiv = find_equiv_reg (old, insn, ALL_REGS, - -1, NULL_PTR, 0, mode); + oldequiv = find_equiv_reg (old, insn, ALL_REGS, -1, NULL, 0, mode); if (oldequiv) { -- cgit v1.1