aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJose E. Marchesi <jose.marchesi@oracle.com>2016-06-08 20:32:16 +0200
committerJose E. Marchesi <jemarch@gcc.gnu.org>2016-06-08 20:32:16 +0200
commit379aea728edb345f42b19dfade5529f8f9e8a6da (patch)
tree4f69387e7c5a597340575a786a42b25707fcced1 /gcc
parentf07063cc7a060dd1148a8540e689c1162bfe35e4 (diff)
downloadgcc-379aea728edb345f42b19dfade5529f8f9e8a6da.zip
gcc-379aea728edb345f42b19dfade5529f8f9e8a6da.tar.gz
gcc-379aea728edb345f42b19dfade5529f8f9e8a6da.tar.bz2
driver-sparc.c (cpu_names): Fix the entry for the SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
2016-06-08 Jose E. Marchesi <jose.marchesi@oracle.com> * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma). From-SVN: r237237
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/sparc/driver-sparc.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 0634872..d3d5200 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2016-06-08 Jose E. Marchesi <jose.marchesi@oracle.com>
+
+ * config/sparc/driver-sparc.c (cpu_names): Fix the entry for the
+ SPARC-M7 and add an entry for SPARC-S7 cpus (Sonoma).
+
2016-06-08 Alan Lawrence <alan.lawrence@arm.com>
* config/aarch64/aarch64.c (aarch64_function_arg_alignment):
diff --git a/gcc/config/sparc/driver-sparc.c b/gcc/config/sparc/driver-sparc.c
index b81763e..ea174bf 100644
--- a/gcc/config/sparc/driver-sparc.c
+++ b/gcc/config/sparc/driver-sparc.c
@@ -57,7 +57,6 @@ static const struct cpu_names {
{ "UltraSPARC-T2+", "niagara2" },
{ "SPARC-T3", "niagara3" },
{ "SPARC-T4", "niagara4" },
- { "SPARC-M7", "niagara7" },
#else
{ "SuperSparc", "supersparc" },
{ "HyperSparc", "hypersparc" },
@@ -74,9 +73,10 @@ static const struct cpu_names {
{ "UltraSparc T2", "niagara2" },
{ "UltraSparc T3", "niagara3" },
{ "UltraSparc T4", "niagara4" },
- { "UltraSparc M7", "niagara7" },
{ "LEON", "leon3" },
#endif
+ { "SPARC-M7", "niagara7" },
+ { "SPARC-S7", "niagara7" },
{ NULL, NULL }
};