diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-04 17:28:10 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-04 17:28:10 +0000 |
commit | 99b6f860a3e5979fc2430da4ca3046014c4ea17f (patch) | |
tree | 7e9526fd156c471f123e834de16a9369351d11fa /gcc/output.h | |
parent | 3e0431fecaefa15cad0253fb67f699eba01c43eb (diff) | |
download | gcc-99b6f860a3e5979fc2430da4ca3046014c4ea17f.tar.gz |
* config/i386/i386-protos.h (ix86_print_operand): Declare.
* config/i386/i386.c (ix86_print_operand): Make non-static.
* config/i386/sol2.h (ASM_OUTPUT_CALL): Call ix86_print_operand.
* output.h (output_operand): Declare.
* final.c (output_operand): Make non-static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160286 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r-- | gcc/output.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/output.h b/gcc/output.h index 8215ac25b98..2eb671daaf0 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -77,6 +77,9 @@ extern rtx final_scan_insn (rtx, FILE *, int, int, int *); subreg of. */ extern rtx alter_subreg (rtx *); +/* Print an operand using machine-dependent assembler syntax. */ +extern void output_operand (rtx, int); + /* Report inconsistency between the assembler template and the operands. In an `asm', it's the user's fault; otherwise, the compiler's fault. */ extern void output_operand_lossage (const char *, ...) ATTRIBUTE_PRINTF_1; |