diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2003-06-09 20:35:43 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-06-09 20:35:43 +0000 |
commit | 528b848768d7a5e30a5a28a0f6beaa73e7b1c55b (patch) | |
tree | a696baf8a359e19abf4ca34fef1ef9e1e80a9a97 | |
parent | 1b7a98bc2167b187d4858aa44c331aac1635a0a6 (diff) | |
download | gcc-528b848768d7a5e30a5a28a0f6beaa73e7b1c55b.zip gcc-528b848768d7a5e30a5a28a0f6beaa73e7b1c55b.tar.gz gcc-528b848768d7a5e30a5a28a0f6beaa73e7b1c55b.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 10 | ||||
-rw-r--r-- | gcc/config/i386/djgpp.h | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 388cbcc..091df3f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> diff --git a/gcc/config/i386/djgpp.h b/gcc/config/i386/djgpp.h index 6798034..0044396 100644 --- a/gcc/config/i386/djgpp.h +++ b/gcc/config/i386/djgpp.h @@ -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) |