diff options
Diffstat (limited to 'gcc/config/i386/gas.h')
-rw-r--r-- | gcc/config/i386/gas.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/gas.h b/gcc/config/i386/gas.h index 4c392966244..6c01b0737ac 100644 --- a/gcc/config/i386/gas.h +++ b/gcc/config/i386/gas.h @@ -166,7 +166,7 @@ Boston, MA 02111-1307, USA. */ #undef ASM_FILE_START #define ASM_FILE_START(FILE) \ do { \ - if (target_flags & MASK_INTEL_SYNTAX) \ + if (ix86_asm_dialect == ASM_INTEL) \ fputs ("\t.intel_syntax\n", FILE); \ output_file_directive (FILE, main_input_filename); \ } while (0) |