diff options
author | David Edelsohn <edelsohn@gnu.org> | 2005-11-15 05:00:40 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2005-11-15 00:00:40 -0500 |
commit | 9719f3b7928a1a740a31925b5b2f3d4053d2d3ff (patch) | |
tree | e3c4173d584ff945858e97eecbb8ca939a360bbc /gcc/config.in | |
parent | f47bddec0c00f9301cb2feba9740a2e3caa8c236 (diff) | |
download | gcc-9719f3b7928a1a740a31925b5b2f3d4053d2d3ff.tar.gz |
invoke.texi (RS/6000 and PowerPC Options): Add -mmfcrf, -mpopcntb, -mfprnd.
* doc/invoke.texi (RS/6000 and PowerPC Options): Add -mmfcrf,
-mpopcntb, -mfprnd. Add -mcpu=power5+.
* configure.ac: Add test for FP rounding instructions.
* configure: Regenerate.
* config.in: Regenerate.
* config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
_ARCH_PPCSQ, _ARCH_PPCGR, _ARCH_PWR4, _ARCH_PWR5, _ARCH_PWR5X if
features enabled.
* config/rs6000/rs6000.opt (mfprnd): New.
* config/rs6000/rs6000.c (processor_target_table): Add power5+.
(POWERPC_MASKS): Add MASK_POPCNTB and MASK_FPRND.
* config/rs6000/aix52.h (ASM_CPU_SPEC): Add -mpower5+.
* config/rs6000/rs6000.h (ASM_CPU_SPEC): Add -mpower5+.
(TARGET_FPRND): New.
* config/rs6000/rs6000.md (UNSPEC_FRIM, UNSPEC_FRIN, UNSPEC_FRIP,
UNSPEC_FRIZ): New.
(btrunc<mode>2): New.
(ceil<mode>2): New.
(floor<mode>2): New.
(round<mode>2): New.
From-SVN: r106938
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 3577c8c1d22..d91891f0709 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -161,6 +161,12 @@ #endif +/* Define if your assembler supports fprnd. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_FPRND +#endif + + /* Define if your assembler supports the --gdwarf2 option. */ #ifndef USED_FOR_TARGET #undef HAVE_AS_GDWARF2_DEBUG_FLAG |