diff options
author | Doug Evans <dje@gnu.org> | 1996-05-17 16:25:47 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-17 16:25:47 +0000 |
commit | 900cb721ce5d7991c5c5fc7e2d2dbbb50ac4cce0 (patch) | |
tree | 2063f47dcf95211d8133f7b713fbb7fb0b35bc05 | |
parent | 5f30b0ff9548a60bef1fa8b1a66f5396ca9677aa (diff) | |
download | gcc-900cb721ce5d7991c5c5fc7e2d2dbbb50ac4cce0.zip gcc-900cb721ce5d7991c5c5fc7e2d2dbbb50ac4cce0.tar.gz gcc-900cb721ce5d7991c5c5fc7e2d2dbbb50ac4cce0.tar.bz2 |
* rs6000/win-nt.h (ASM_FILE_START): Likewise. Delete duplicate.
From-SVN: r12001
-rw-r--r-- | gcc/config/rs6000/win-nt.h | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/gcc/config/rs6000/win-nt.h b/gcc/config/rs6000/win-nt.h index 58d941c..76c8ff2 100644 --- a/gcc/config/rs6000/win-nt.h +++ b/gcc/config/rs6000/win-nt.h @@ -1,6 +1,6 @@ /* Definitions of target machine for GNU compiler, for PowerPC running Windows/NT. - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Contributed by Cygnus Support. This file is part of GNU CC. @@ -125,16 +125,6 @@ Boston, MA 02111-1307, USA. */ #undef FIXED_R13 #define FIXED_R13 1 - - -/* Output .file and comments listing what options there are */ -#undef ASM_FILE_START -#define ASM_FILE_START(FILE) \ -{ \ - ASM_OUTPUT_OPTIONS (FILE); \ - output_file_directive (FILE, main_input_filename); \ -} - /* This says how to output an assembler line to define a global common symbol. */ @@ -201,11 +191,10 @@ do { \ #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ -{ \ - ASM_OUTPUT_OPTIONS (FILE); \ - output_file_directive (FILE, main_input_filename); \ +do { \ + output_file_directive ((FILE), main_input_filename); \ data_section (); \ -} +} while (0) #undef ASM_FILE_END |