diff options
author | Jan Hubicka <jh@suse.cz> | 2001-12-18 16:41:30 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2001-12-18 15:41:30 +0000 |
commit | c93e80a5d0e94ce91fbae4cac313000ef1a0c71f (patch) | |
tree | 611fbcb9c6a85228a73fc135998f2604838dd1a8 /gcc/config/i386/linux.h | |
parent | 114e78f8f0fe99574e974cb843ae0ab98ba21c4d (diff) | |
download | gcc-c93e80a5d0e94ce91fbae4cac313000ef1a0c71f.zip gcc-c93e80a5d0e94ce91fbae4cac313000ef1a0c71f.tar.gz gcc-c93e80a5d0e94ce91fbae4cac313000ef1a0c71f.tar.bz2 |
att.h (ASM_FILE_START): Use asm_dialect.
* 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.
From-SVN: r48160
Diffstat (limited to 'gcc/config/i386/linux.h')
-rw-r--r-- | gcc/config/i386/linux.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index b7d7b3d..63006b3 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA. */ #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) |