diff options
author | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-18 22:37:29 +0000 |
---|---|---|
committer | drow <drow@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-18 22:37:29 +0000 |
commit | fbf5169c0734032f7c4bef4fccc616f227f3b06d (patch) | |
tree | 9c3f19b6c5d9ff03f645e3e26296a283983d4440 /gcc/output.h | |
parent | e5562ab8e532eb6104339ce200605eecf03f005e (diff) | |
download | gcc-fbf5169c0734032f7c4bef4fccc616f227f3b06d.tar.gz |
* final.c (final_scan_insn): Make non-static again.
* output.h (final_scan_insn): Re-add prototype.
* config/arc/arc.c (arc_output_function_epilogue): Add NULL
to final_scan_insn call.
* config/cris/cris.c (cris_target_asm_function_epilogue): Likewise.
* config/mips/mips.c (mips_output_conditional_branch): Likewise.
* config/pa/pa.c (output_lbranch, output_call): Likewise.
* config/sh/sh.c (print_slot): Likewise.
* config/sparc/sparc.c (sparc_nonflat_function_epilogue): Likewise.
(output_sibcall, sparc_flat_function_epilogue): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@76117 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h index 5c9497a3dff..05a3743726f 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -68,6 +68,11 @@ extern void final_end_function (void); /* Output assembler code for some insns: all or part of a function. */ extern void final (rtx, FILE *, int, int); +/* The final scan for one insn, INSN. Args are same as in `final', except + that INSN is the insn being scanned. Value returned is the next insn to + be scanned. */ +extern rtx final_scan_insn (rtx, FILE *, int, int, int, int *); + /* Replace a SUBREG with a REG or a MEM, based on the thing it is a subreg of. */ extern rtx alter_subreg (rtx *); |