diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-08-20 23:27:03 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-08-20 23:27:03 +0000 |
commit | 761c70aade1cf9ccfe0316cb69360453d426e7d7 (patch) | |
tree | e811092544bd791436a36be808b611cbdf48735e /gcc/config/arm/arm.c | |
parent | 5ce6f47b378db770b570df0b83c8c24ef4e475e3 (diff) | |
download | gcc-761c70aade1cf9ccfe0316cb69360453d426e7d7.zip gcc-761c70aade1cf9ccfe0316cb69360453d426e7d7.tar.gz gcc-761c70aade1cf9ccfe0316cb69360453d426e7d7.tar.bz2 |
arc.c (output_shift): Use stdio instead of asm_fprintf.
* arc.c (output_shift): Use stdio instead of asm_fprintf.
* arm.c (thumb_output_function_prologue): Likewise.
* avr.c (print_operand): Likewise.
* c4x.c (c4x_print_operand): Likewise.
* c4x.h (ASM_OUTPUT_INTERNAL_LABEL, TRAMPOLINE_TEMPLATE,
ASM_OUTPUT_REG_PUSH, ASM_OUTPUT_REG_POP): Likewise.
* cris.c (cris_target_asm_function_prologue,
cris_asm_output_mi_thunk): Likewise.
* h8300.c (print_operand): Likewise.
* h8300.h (ASM_OUTPUT_ADDR_VEC_ELT): Likewise.
* ip2k.c (print_operand): Likewise. Fix format specifier.
* m68hc11.c (asm_print_register, print_operand,
print_operand_address): Use stdio instead of asm_fprintf.
(print_operand_address): Fix format specifier.
* m68hc11.h (FUNCTION_PROFILER, ASM_OUTPUT_ADDR_DIFF_ELT,
ASM_OUTPUT_ADDR_VEC_ELT, ASM_OUTPUT_ALIGN): Use stdio instead of
asm_fprintf.
* m68k/amix.h (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
* m68k/atari.h (ASM_OUTPUT_INTERNAL_LABEL): Likewise.
* m68k.c (m68k_output_function_prologue,
m68k_output_function_epilogue, print_operand): Likewise.
* mmix.c (mmix_asm_output_mi_thunk, mmix_asm_weaken_label):
Likewise. Fix format specifier.
* mn10200.h (ASM_OUTPUT_ADDR_VEC_ELT): Likewise.
* mn10300.h (ASM_OUTPUT_ADDR_VEC_ELT): Likewise.
* v850.h (ASM_OUTPUT_ADDR_VEC_ELT): Likewise.
From-SVN: r56472
Diffstat (limited to 'gcc/config/arm/arm.c')
-rw-r--r-- | gcc/config/arm/arm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 5ff47c2..d44ec80 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -10283,13 +10283,13 @@ thumb_output_function_prologue (f, size) #define STUB_NAME ".real_start_of" - asm_fprintf (f, "\t.code\t16\n"); + fprintf (f, "\t.code\t16\n"); #ifdef ARM_PE if (arm_dllexport_name_p (name)) name = arm_strip_name_encoding (name); #endif asm_fprintf (f, "\t.globl %s%U%s\n", STUB_NAME, name); - asm_fprintf (f, "\t.thumb_func\n"); + fprintf (f, "\t.thumb_func\n"); asm_fprintf (f, "%s%U%s:\n", STUB_NAME, name); } @@ -10299,7 +10299,7 @@ thumb_output_function_prologue (f, size) { int num_pushes; - asm_fprintf (f, "\tpush\t{"); + fprintf (f, "\tpush\t{"); num_pushes = ARM_NUM_INTS (current_function_pretend_args_size); @@ -10309,7 +10309,7 @@ thumb_output_function_prologue (f, size) asm_fprintf (f, "%r%s", regno, regno == LAST_ARG_REGNUM ? "" : ", "); - asm_fprintf (f, "}\n"); + fprintf (f, "}\n"); } else asm_fprintf (f, "\tsub\t%r, %r, #%d\n", |