diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-18 15:41:30 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-18 15:41:30 +0000 |
commit | 25b313914b1dd6a4b2a53180ee89215e2b562c2f (patch) | |
tree | 611fbcb9c6a85228a73fc135998f2604838dd1a8 /gcc/config/i386/att.h | |
parent | 8000b99d217d3f3acb2c1e3f7a5d8c0c016d7183 (diff) | |
download | gcc-25b313914b1dd6a4b2a53180ee89215e2b562c2f.tar.gz |
* att.h (ASM_FILE_START): Use asm_dialect.
* linux.h (ASM_FILE_START): Likewise.
* gas.h (ASM_FILE_START): Likewise.
* i386.c (ix86_debug_arg_string, ix86_debug_addr_string,
ix86_asm_string, ix86_asm_dialect): New.
(override_options): Set asm_dialect.
* i386.h (MASK_MIX_SSE_I387, MASK_INTEL_SYNTAX, MASK_DEBUG_ARG,
MASK_DEBUG_ADDR): Kill.
(MASK_64BIT, MASK_NO_RED_ZONE): renumber.
(TARGET_DEBUG_ADDR, TARGET_DEBUG_ARG): Use string.
(ASSEMBLER_DIALECT): Use asm_dialect.
(TARGET_SWITCHES): Undocument deprecated items; deprecate intel-syntax;
remove debug-addr and debug-arg.
(TARGET_OPTIONS): Add debug-arg, debug-addr, asm.
(asm_dialect): New enum.
(ix86_debug_arg_string, ix86_debug_addr_string,
ix86_asm_string, ix86_asm_dialect): Declare.
* invoke.texi (-mintel-syntax): Remove.
(-masm): Document.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48160 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/att.h')
-rw-r--r-- | gcc/config/i386/att.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/att.h b/gcc/config/i386/att.h index df47f891cfd..f16a5ea6233 100644 --- a/gcc/config/i386/att.h +++ b/gcc/config/i386/att.h @@ -53,7 +53,7 @@ do \ #define ASM_FILE_START(FILE) \ do { \ output_file_directive (FILE, main_input_filename); \ - if (target_flags & MASK_INTEL_SYNTAX) \ + if (ix86_asm_dialect == ASM_INTEL) \ fputs ("\t.intel_syntax\n", FILE); \ } while (0) |