diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 12:11:35 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 12:11:35 +0000 |
commit | d946ea19691c3dbff945842d584b6a94c5190d92 (patch) | |
tree | 8291109d2b67c4e545af01d31c07d304a1aa6fc8 /gcc/varasm.c | |
parent | 009683b3add393296a992f44e7078b0e3e3e6246 (diff) | |
download | gcc-d946ea19691c3dbff945842d584b6a94c5190d92.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41722 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 86f2e4f420b..690098792ca 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -1939,7 +1939,7 @@ assemble_real (d, mode) abort (); } - set_float_handler (NULL_PTR); + set_float_handler (NULL); } /* Here we combine duplicate floating constants to make @@ -4804,7 +4804,7 @@ assemble_alias (decl, target) /* We must force creation of DECL_RTL for debug info generation, even though we don't use it here. */ - make_decl_rtl (decl, NULL_PTR); + make_decl_rtl (decl, NULL); name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)); |