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/rtlanal.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/rtlanal.c')
-rw-r--r-- | gcc/rtlanal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rtlanal.c b/gcc/rtlanal.c index 3dd7c13..121b879 100644 --- a/gcc/rtlanal.c +++ b/gcc/rtlanal.c @@ -1214,7 +1214,7 @@ reg_overlap_mentioned_p (x, in) do_reg: endregno = regno + (regno < FIRST_PSEUDO_REGISTER ? HARD_REGNO_NREGS (regno, GET_MODE (x)) : 1); - return refers_to_regno_p (regno, endregno, in, NULL_PTR); + return refers_to_regno_p (regno, endregno, in, (rtx*)0); case MEM: { |