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
This commit is contained in:
Andrew Pinski 2003-06-09 20:35:43 +00:00 committed by Zack Weinberg
parent 1b7a98bc21
commit 528b848768
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,9 @@
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>
* 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>
* opts.sh: ... here.
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
* 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>
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>

View file

@ -136,6 +136,8 @@ Boston, MA 02111-1307, USA. */
#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)