diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1991-12-29 07:12:14 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1991-12-29 07:12:14 -0500 |
commit | 1428a6b3ab6ad2587296e2d808eb64c73ba5ccdb (patch) | |
tree | 4021efe6513bb412cc71c190d70c9f34d4f1f18e /gcc/output.h | |
parent | b6cd4666bcb804d0adaabe9037a59cb373e33885 (diff) | |
download | gcc-1428a6b3ab6ad2587296e2d808eb64c73ba5ccdb.tar.gz |
*** empty log message ***
From-SVN: r147
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/output.h b/gcc/output.h index c75929c90f6..143fca0270a 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -20,11 +20,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Output a string of assembler code, substituting insn operands. Defined in final.c. */ -void output_asm_insn (); +extern void output_asm_insn (); /* Output a string of assembler code, substituting numbers, strings and fixed syntactic prefixes. */ -void asm_fprintf (); +extern void asm_fprintf (); + +/* Replace a SUBREG with a REG or a MEM, based on the thing it is a + subreg of. */ +extern rtx alter_subreg (); /* When outputting assembler code, indicates which alternative of the constraints was actually satisfied. */ |