diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2008-08-08 16:40:18 -0500 |
---|---|---|
committer | Pat Haugen <pthaugen@gcc.gnu.org> | 2008-08-08 21:40:18 +0000 |
commit | d40c9e333328e700c7a6f50f7e007dcd9dfcf84c (patch) | |
tree | 766701be8c066b954001791b8c9f965f6a6a1e4c /gcc/config.in | |
parent | 76871f0f310eb6e7fec812d33884be46a5da6833 (diff) | |
download | gcc-d40c9e333328e700c7a6f50f7e007dcd9dfcf84c.zip gcc-d40c9e333328e700c7a6f50f7e007dcd9dfcf84c.tar.gz gcc-d40c9e333328e700c7a6f50f7e007dcd9dfcf84c.tar.bz2 |
invoke.texi: Add cpu_type power7.
2008-08-08 Peter Bergner <bergner@vnet.ibm.com>
* doc/invoke.texi: Add cpu_type power7.
* config.in (HAVE_AS_VSX): New.
* config.gcc: Add cpu_type power7.
* configure.ac (HAVE_AS_VSX): Check for assembler support of the
VSX instructions.
* configure: Regenerate.
* config/rs6000/rs6000.c (rs6000_override_options): Alias power7 to
power5.
* config/rs6000/rs6000.h (ASM_CPU_POWER7_SPEC): Define.
(ASM_CPU_SPEC): Pass %(asm_cpu_power7) for -mcpu=power7.
(EXTRA_SPECS): Add asm_cpu_power7 spec string.
From-SVN: r138887
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 209da21..f4604d2 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -377,6 +377,10 @@ #undef HAVE_AS_TLS #endif +/* Define if your assembler supports VSX instructions. */ +#ifndef USED_FOR_TARGET +#undef HAVE_AS_VSX +#endif /* Define to 1 if you have the `atoll' function. */ #ifndef USED_FOR_TARGET |