Commit 528b8487 by Andrew Pinski Committed by Zack Weinberg

re PR target/8787 ([DJGPP] GCC fails to emit .intel_syntax when invoked with the…

re PR target/8787 ([DJGPP] GCC fails to emit .intel_syntax when invoked with the -masm=intel on DJGPP)

2003-06-08  Andrew Pinski  <pinskia@physics.uc.edu>

	PR target/8787
	* config/i386/djgpp.h (ASM_FILE_START): emit `.intel_syntax'
	if -masm=intel.

From-SVN: r67676
parent 1b7a98bc
2003-06-08 Andrew Pinski <pinskia@physics.uc.edu>
PR target/8787
* config/i386/djgpp.h (ASM_FILE_START): emit `.intel_syntax'
if -masm=intel.
2003-06-09 James E Wilson <wilson@tuliptree.org> 2003-06-09 James E Wilson <wilson@tuliptree.org>
* config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c, * config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
...@@ -271,7 +277,7 @@ Sun Jun 8 15:52:17 CEST 2003 Jan Hubicka <jh@suse.cz> ...@@ -271,7 +277,7 @@ Sun Jun 8 15:52:17 CEST 2003 Jan Hubicka <jh@suse.cz>
* opts.sh: ... here. * opts.sh: ... here.
2003-06-07 Eric Botcazou <ebotcazou@libertysurf.fr> 2003-06-07 Eric Botcazou <ebotcazou@libertysurf.fr>
Ulrich Weigand <Ulrich.Weigand@de.ibm.com> Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
PR pch/9830 PR pch/9830
* ggc-common.c (HAVE_MMAP_FILE): Include sys/types.h * ggc-common.c (HAVE_MMAP_FILE): Include sys/types.h
...@@ -297,7 +303,7 @@ Sun Jun 8 15:52:17 CEST 2003 Jan Hubicka <jh@suse.cz> ...@@ -297,7 +303,7 @@ Sun Jun 8 15:52:17 CEST 2003 Jan Hubicka <jh@suse.cz>
2003-06-07 Richard Henderson <rth@redhat.com> 2003-06-07 Richard Henderson <rth@redhat.com>
* c-cppbuiltin.c (c_cpp_builtins): Define __EXCEPTIONS for C also. * c-cppbuiltin.c (c_cpp_builtins): Define __EXCEPTIONS for C also.
2003-06-07 Richard Henderson <rth@redhat.com> 2003-06-07 Richard Henderson <rth@redhat.com>
......
...@@ -136,6 +136,8 @@ Boston, MA 02111-1307, USA. */ ...@@ -136,6 +136,8 @@ Boston, MA 02111-1307, USA. */
#undef ASM_FILE_START #undef ASM_FILE_START
#define ASM_FILE_START(FILE) \ #define ASM_FILE_START(FILE) \
do { \ do { \
if (ix86_asm_dialect == ASM_INTEL) \
fputs ("\t.intel_syntax\n", FILE); \
output_file_directive (FILE, main_input_filename); \ output_file_directive (FILE, main_input_filename); \
} while (0) } while (0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment