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>
* config/frv/cmovc.c, config/frv/cmovh.c, config/frv/cmovw.c,
......
......@@ -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)
......
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