From: Doug Evans Date: Fri, 17 May 1996 16:14:28 +0000 (+0000) Subject: aout.h (ASM_OUTPUT_OPTIONS): Delete. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cfd262048c77266eaa3eb04168fc7c645dfe5718;p=gcc.git aout.h (ASM_OUTPUT_OPTIONS): Delete. * arm/aout.h (ASM_OUTPUT_OPTIONS): Delete. (ASM_FILE_START): Delete option output support. From-SVN: r11992 --- diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h index b47fada92b3..4ed9f432491 100644 --- a/gcc/config/arm/aout.h +++ b/gcc/config/arm/aout.h @@ -23,18 +23,9 @@ Boston, MA 02111-1307, USA. */ #define ARM_OS_NAME "(generic)" #endif -#define ASM_OUTPUT_OPTIONS(FILE) \ - output_options(FILE, \ - f_options, sizeof (f_options) / sizeof (f_options[0]), \ - W_options, sizeof (W_options) / sizeof (W_options[0])) - /* The text to go at the start of the assembler file */ #define ASM_FILE_START(STREAM) \ { \ - extern char *version_string; \ - fprintf (STREAM,"%s Generated by gcc %s for ARM/%s\n", \ - ASM_COMMENT_START, version_string, ARM_OS_NAME); \ - ASM_OUTPUT_OPTIONS(STREAM); \ fprintf (STREAM,"%srfp\t.req\t%sr9\n", REGISTER_PREFIX, REGISTER_PREFIX); \ fprintf (STREAM,"%ssl\t.req\t%sr10\n", REGISTER_PREFIX, REGISTER_PREFIX); \ fprintf (STREAM,"%sfp\t.req\t%sr11\n", REGISTER_PREFIX, REGISTER_PREFIX); \