diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-05-02 14:31:45 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-05-02 14:31:45 +0000 |
commit | 9714cf4399fc4833c9055d4a0e5c5cc504226c44 (patch) | |
tree | 7242626023390eab7333b3367b8417b18f8e5803 /gcc/reload1.c | |
parent | 46188dcad01ec9cd70c6670b3178553c51e6455a (diff) | |
download | gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.zip gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.tar.gz gcc-9714cf4399fc4833c9055d4a0e5c5cc504226c44.tar.bz2 |
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
Diffstat (limited to 'gcc/reload1.c')
-rw-r--r-- | gcc/reload1.c | 9 |
1 files changed, 4 insertions, 5 deletions
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) { |