diff options
author | Doug Evans <dje@gnu.org> | 1996-05-17 16:14:28 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-17 16:14:28 +0000 |
commit | cfd262048c77266eaa3eb04168fc7c645dfe5718 (patch) | |
tree | 70b5ded5a42572defcbfc6c7bc6e80c6b6052e66 /gcc | |
parent | 66eaaa860e299038199e0ff7e8282605a0ee4c20 (diff) | |
download | gcc-cfd262048c77266eaa3eb04168fc7c645dfe5718.zip gcc-cfd262048c77266eaa3eb04168fc7c645dfe5718.tar.gz gcc-cfd262048c77266eaa3eb04168fc7c645dfe5718.tar.bz2 |
aout.h (ASM_OUTPUT_OPTIONS): Delete.
* arm/aout.h (ASM_OUTPUT_OPTIONS): Delete.
(ASM_FILE_START): Delete option output support.
From-SVN: r11992
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/arm/aout.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h index b47fada..4ed9f43 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); \ |