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:
parent
1b7a98bc21
commit
528b848768
2 changed files with 10 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue