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/final.c | |
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/final.c')
-rw-r--r-- | gcc/final.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 93fb170..6ca3634 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -220,7 +220,6 @@ static void output_asm_name (void); static void output_alternate_entry_point (FILE *, rtx); static tree get_mem_expr_from_op (rtx, int *); static void output_asm_operand_names (rtx *, int *, int); -static void output_operand (rtx, int); #ifdef LEAF_REGISTERS static void leaf_renumber_regs (rtx); #endif @@ -3478,7 +3477,7 @@ mark_symbol_refs_as_used (rtx x) The meanings of the letters are machine-dependent and controlled by TARGET_PRINT_OPERAND. */ -static void +void output_operand (rtx x, int code ATTRIBUTE_UNUSED) { if (x && GET_CODE (x) == SUBREG) |