diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2011-03-23 13:42:46 +0000 |
---|---|---|
committer | Andreas Krebbel <krebbel@gcc.gnu.org> | 2011-03-23 13:42:46 +0000 |
commit | f137aa6354e620b0a5f9b3783951cdf69a81c588 (patch) | |
tree | 8c3ed9b4da9e845b7f2fe45b3684d3e43f469af5 /gcc/config/s390/s390.md | |
parent | 8d985ccd2e833b81201295c090ba4278b71ed4d6 (diff) | |
download | gcc-f137aa6354e620b0a5f9b3783951cdf69a81c588.zip gcc-f137aa6354e620b0a5f9b3783951cdf69a81c588.tar.gz gcc-f137aa6354e620b0a5f9b3783951cdf69a81c588.tar.bz2 |
2084.md: Enable all insn reservations also for z9_ec cpu attribute value.
2011-03-23 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/2084.md: Enable all insn reservations also for z9_ec
cpu attribute value.
* config/s390/s390-opts.h (enum s390_arch_option): Remove.
(enum processor_type): Add PROCESSOR_2094_Z9_EC.
* config/s390/s390.c (processor_flags_table): New constant array.
(s390_handle_arch_option): Remove.
(s390_handle_option): Remove s390_handle_arch_option invocations
and OPT_mwarn_framesize_ handling.
(s390_option_override): Remove s390_handle_arch_option invocation.
(s390_emit_prologue): Remove use of HOST_WIDE_INT_PRINT_DEC in
warnings.
* config/s390/s390.md (cpu attribute): Add z9_ec value.
* config/s390/s390.opt (s390_tune, s390_arch)
(march=): Replace s390_arch_option enum and values with
processor_type. Set variable name to s390_arch. Set
initialization value.
(mtune=): Replace s390_arch_option with processor_type. Set
variable name to s390_tune. Set initialization value.
From-SVN: r171350
Diffstat (limited to 'gcc/config/s390/s390.md')
-rw-r--r-- | gcc/config/s390/s390.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index 335ed09..faf8672 100644 --- a/gcc/config/s390/s390.md +++ b/gcc/config/s390/s390.md @@ -272,7 +272,7 @@ ;; distinguish between g5 and g6, but there are differences between the two ;; CPUs could in theory be modeled. -(define_attr "cpu" "g5,g6,z900,z990,z9_109,z10,z196" +(define_attr "cpu" "g5,g6,z900,z990,z9_109,z9_ec,z10,z196" (const (symbol_ref "s390_tune_attr"))) (define_attr "cpu_facility" "standard,ieee,zarch,longdisp,extimm,dfp,z10,z196" |