diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 23:18:50 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-06-13 23:18:50 +0000 |
commit | bdbadb37aa54640e4a2a544aa998bdad7334830f (patch) | |
tree | d8549ded808bebd2db4066871f25247696e814ff /gcc/config/i386/djgpp.h | |
parent | 29fde7f172777cc3fb4c0f2bb8707e55d5a45532 (diff) | |
download | gcc-bdbadb37aa54640e4a2a544aa998bdad7334830f.tar.gz |
* config/i386/bsd.h: Remove ASM_FILE_START.
* config/i386/djgpp.h: Likewise.
* config/i386/gas.h (ASM_FILE_START): Output .file before .intel_syntax.
* config/i386/djgpp.h: Move included unix.h, bsd.h, gas.h to ...
* config.gcc (i[34567]86-pc-msdosdjgpp): ... here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67919 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/djgpp.h')
-rw-r--r-- | gcc/config/i386/djgpp.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 00443969e69..d2fcd6fce42 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -30,10 +30,6 @@ Boston, MA 02111-1307, USA. */ /* Enable parsing of #pragma pack(push,<n>) and #pragma pack(pop). */ #define HANDLE_PRAGMA_PACK_PUSH_POP 1 -#include "i386/unix.h" -#include "i386/bsd.h" -#include "i386/gas.h" - /* If defined, a C expression whose value is a string containing the assembler operation to identify the following data as uninitialized global data. If not defined, and neither @@ -130,17 +126,6 @@ Boston, MA 02111-1307, USA. */ /* Switch into a generic section. */ #define TARGET_ASM_NAMED_SECTION default_coff_asm_named_section -/* Output at beginning of assembler file. */ -/* The .file command should always begin the output. */ - -#undef ASM_FILE_START -#define ASM_FILE_START(FILE) \ - do { \ - if (ix86_asm_dialect == ASM_INTEL) \ - fputs ("\t.intel_syntax\n", FILE); \ - output_file_directive (FILE, main_input_filename); \ - } while (0) - /* This is how to output an assembler line that says to advance the location counter to a multiple of 2**LOG bytes. */ |