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/emit-rtl.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/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 37df9a1..3452a68 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -1783,7 +1783,7 @@ gen_label_rtx () register rtx label; label = gen_rtx_CODE_LABEL (VOIDmode, 0, NULL_RTX, - NULL_RTX, label_num++, NULL_PTR, NULL_PTR); + NULL_RTX, label_num++, NULL, NULL); LABEL_NUSES (label) = 0; LABEL_ALTERNATE_NAME (label) = NULL; |