mirror of git://gcc.gnu.org/git/gcc.git
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
This commit is contained in:
parent
f07063cc7a
commit
379aea728e
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue