This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: [PATCH 5/9] gas: new SPARC architectures: sparc5, v9m and v8plusm.
- From: jose dot marchesi at oracle dot com (Jose E. Marchesi)
- To: binutils at sourceware dot org
- Cc: davem at davemloft dot net
- Date: Sun, 05 Oct 2014 15:05:20 +0200
- Subject: Re: [PATCH 5/9] gas: new SPARC architectures: sparc5, v9m and v8plusm.
- Authentication-results: sourceware.org; auth=none
- References: <1412266782-14873-1-git-send-email-jose dot marchesi at oracle dot com> <1412266782-14873-6-git-send-email-jose dot marchesi at oracle dot com>
@@ -272,6 +279,7 @@ static struct sparc_arch {
{ "v8plusd", "v9b", v9, 0, 1, HWCAP_V8PLUS|HWS_VD, 0 },
{ "v8pluse", "v9b", v9, 0, 1, HWCAP_V8PLUS|HWS_VE, 0 },
{ "v8plusv", "v9b", v9, 0, 1, HWCAP_V8PLUS|HWS_VV, 0 },
+ { "v8plusx", "v9b", v9, 0, 1, HWCAP_V8PLUS|HWS_VM, 0 },
{ "v9", "v9", v9, 0, 1, HWS_V9, 0 },
{ "v9a", "v9a", v9, 0, 1, HWS_VA, 0 },
@@ -280,6 +288,7 @@ static struct sparc_arch {
{ "v9d", "v9b", v9, 0, 1, HWS_VD, 0 },
{ "v9e", "v9b", v9, 0, 1, HWS_VE, 0 },
{ "v9v", "v9b", v9, 0, 1, HWS_VV, 0 },
+ { "v9x", "v9b", v9, 0, 1, HWS_VM, HWS2_VM },
Sorry, I just spotted a typo there. The architecture names must
actually be "v8plusm" and "v9m", not "v8plusx" and "v9x".