diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2010-06-04 17:28:10 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2010-06-04 17:28:10 +0000 |
commit | 6b3c42ae60c718a0f9ad4ac29ca50d12361972a6 (patch) | |
tree | 7e9526fd156c471f123e834de16a9369351d11fa /gcc/output.h | |
parent | 39e7207ad9ffdf6d8059a28be8c940e78ef0fe7c (diff) | |
download | gcc-6b3c42ae60c718a0f9ad4ac29ca50d12361972a6.zip gcc-6b3c42ae60c718a0f9ad4ac29ca50d12361972a6.tar.gz gcc-6b3c42ae60c718a0f9ad4ac29ca50d12361972a6.tar.bz2 |
i386-protos.h (ix86_print_operand): Declare.
* 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.
From-SVN: r160286
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 8215ac2..2eb671d 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; |