aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2007-06-05 17:00:33 +0000
committerNick Clifton <nickc@redhat.com>2007-06-05 17:00:33 +0000
commitdfeb06664ae08b270f4b46c76620a8e4fdcdeaa2 (patch)
treee05d6d823ada33c2d0d0fdb8f393731ad3ae7f7b /gas/config
parent93e7bd98af3e52d6d51a9cacd0848a3c6a3e5bdb (diff)
downloadgdb-dfeb06664ae08b270f4b46c76620a8e4fdcdeaa2.zip
gdb-dfeb06664ae08b270f4b46c76620a8e4fdcdeaa2.tar.gz
gdb-dfeb06664ae08b270f4b46c76620a8e4fdcdeaa2.tar.bz2
Patch for PR4587 + move proc run_list_test into gas-defs.exp
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-sparc.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c
index 84472b3..d4a409f 100644
--- a/gas/config/tc-sparc.c
+++ b/gas/config/tc-sparc.c
@@ -1860,7 +1860,8 @@ sparc_ip (str, pinsn)
case '\0': /* End of args. */
if (s[0] == ',' && s[1] == '%')
{
- static const struct tls_ops {
+ static const struct tls_ops
+ {
/* The name as it appears in assembler. */
char *name;
/* strlen (name), precomputed for speed */
@@ -1869,7 +1870,9 @@ sparc_ip (str, pinsn)
int reloc;
/* 1 if call. */
int call;
- } tls_ops[] = {
+ }
+ tls_ops[] =
+ {
{ "tgd_add", 7, BFD_RELOC_SPARC_TLS_GD_ADD, 0 },
{ "tgd_call", 8, BFD_RELOC_SPARC_TLS_GD_CALL, 1 },
{ "tldm_add", 8, BFD_RELOC_SPARC_TLS_LDM_ADD, 0 },
@@ -1877,7 +1880,8 @@ sparc_ip (str, pinsn)
{ "tldo_add", 8, BFD_RELOC_SPARC_TLS_LDO_ADD, 0 },
{ "tie_ldx", 7, BFD_RELOC_SPARC_TLS_IE_LDX, 0 },
{ "tie_ld", 6, BFD_RELOC_SPARC_TLS_IE_LD, 0 },
- { "tie_add", 7, BFD_RELOC_SPARC_TLS_IE_ADD, 0 }
+ { "tie_add", 7, BFD_RELOC_SPARC_TLS_IE_ADD, 0 },
+ { NULL, 0, 0, 0 }
};
const struct tls_ops *o;
char *s1;