diff options
author | Roger Sayle <sayle@gcc.gnu.org> | 2006-07-07 00:13:14 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-07-07 00:13:14 +0000 |
commit | b6c03bcd80e0128009dad84f8cf891c5df22029c (patch) | |
tree | 184927de213b7f5deec32e4f23bb6484e24ec6ee /gcc/config.in | |
parent | 33251a2dc31fe5157741af51027ea0a145465dfc (diff) | |
download | gcc-b6c03bcd80e0128009dad84f8cf891c5df22029c.tar.gz |
re PR target/27968 (gcc emits (undefined) ffreep opcode which is not understood by Solaris' /usr/ccs/bin/as when tuning for Athlon or Opteron CPUs)
PR target/27968
* configure.ac (HAVE_AS_IX86_FFREEP): On x86 targets check whether
the configured assembler supports the x87's ffreep mnemonic.
* configure: Regenerate.
* config.in: Regenerate.
* config/i386/i386.c (output_387_ffreep): New function.
(output_fp_compare): Use output_387_ffreep to emit ffreep insns.
(output_387_reg_move): Likewise.
From-SVN: r115237
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index d5f854ef959..47ba85080c2 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -203,6 +203,12 @@ #endif +/* Define if your assembler supports the ffreep mnemonic. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_IX86_FFREEP +#endif + + /* Define if your assembler supports the lituse_jsrdirect relocation. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_JSRDIRECT_RELOCS |