aboutsummaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2001-05-04 15:06:41 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2001-05-04 15:06:41 +0000
commitdf4ae16082e3e505dc093b768d20f2dbb31200de (patch)
tree1ddedd2de7e35d61a49586dd95345d1b563fd5a3 /gcc/final.c
parent37a580360c3df196e8dc6e075ba1bd24d83bbefc (diff)
downloadgcc-df4ae16082e3e505dc093b768d20f2dbb31200de.zip
gcc-df4ae16082e3e505dc093b768d20f2dbb31200de.tar.gz
gcc-df4ae16082e3e505dc093b768d20f2dbb31200de.tar.bz2
alpha.h: NULL_PTR -> NULL.
* alpha.h: NULL_PTR -> NULL. * arm.c: Likewise. * arm.h: Likewise. * avr.h: Likewise. * c4x.c: Likewise. * c4x.h: Likewise. * i386.c: Likewise. * i386.md: Likewise. * i860.c: Likewise. * ia64.c: Likewise. * m68hc11.h: Likewise. * rs6000.h: Likewise. * sh.c: Likewise. * sh.h: Likewise. * sparc.h: Likewise. * v850.c: Likewise. * expr.c: Likewise. * final.c: Likewise. * gcc.c: Likewise. * recog.c: Likewise. From-SVN: r41831
Diffstat (limited to 'gcc/final.c')
-rw-r--r--gcc/final.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/final.c b/gcc/final.c
index a681cee..57d34f5 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -1532,8 +1532,7 @@ asm_insn_count (body)
if (GET_CODE (body) == ASM_INPUT)
template = XSTR (body, 0);
else
- template = decode_asm_operands (body, NULL_PTR, NULL_PTR,
- NULL_PTR, NULL_PTR);
+ template = decode_asm_operands (body, NULL, NULL, NULL, NULL);
for (; *template; template++)
if (IS_ASM_LOGICAL_LINE_SEPARATOR (*template) || *template == '\n')
@@ -2337,7 +2336,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
new_block = 1;
#ifdef FINAL_PRESCAN_LABEL
- FINAL_PRESCAN_INSN (insn, NULL_PTR, 0);
+ FINAL_PRESCAN_INSN (insn, NULL, 0);
#endif
#ifdef SDB_DEBUGGING_INFO
@@ -2539,8 +2538,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
}
/* Get out the operand values. */
- string = decode_asm_operands (body, ops, NULL_PTR,
- NULL_PTR, NULL_PTR);
+ string = decode_asm_operands (body, ops, NULL, NULL, NULL);
/* Inhibit aborts on what would otherwise be compiler bugs. */
insn_noperands = noperands;
this_is_asm_operands = insn;