aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2002-06-02 08:36:10 +0000
committerRichard Henderson <rth@redhat.com>2002-06-02 08:36:10 +0000
commit20e130e9c04ebc2370c28f721832c424b3117eda (patch)
treeb77eb2b287bb0f6f4e3d6da4d31d0e116d390c5c /gas/config
parent048d873d6955915e73916ff8b17d8ba291d0d288 (diff)
downloadgdb-20e130e9c04ebc2370c28f721832c424b3117eda.zip
gdb-20e130e9c04ebc2370c28f721832c424b3117eda.tar.gz
gdb-20e130e9c04ebc2370c28f721832c424b3117eda.tar.bz2
* config/tc-alpha.c (alpha_adjust_symtab_relocs): Fix thinko
with LITERALs without sequence numbers.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-alpha.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index dec4db4..b96eb46 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -1775,8 +1775,9 @@ alpha_adjust_symtab_relocs (abfd, sec, ptr)
break;
case BFD_RELOC_ALPHA_ELF_LITERAL:
- if (fixp->tc_fix_data.info->saw_tlsgd
- || fixp->tc_fix_data.info->saw_tlsldm)
+ if (fixp->tc_fix_data.info
+ && (fixp->tc_fix_data.info->saw_tlsgd
+ || fixp->tc_fix_data.info->saw_tlsldm))
break;
/* FALLTHRU */
@@ -1832,7 +1833,8 @@ alpha_adjust_symtab_relocs (abfd, sec, ptr)
/* FALLTHRU */
case BFD_RELOC_ALPHA_ELF_LITERAL:
- if (fixp->tc_fix_data.info->n_master == 1
+ if (fixp->tc_fix_data.info
+ && fixp->tc_fix_data.info->n_master == 1
&& ! fixp->tc_fix_data.info->multi_section_p)
{
for (slave = fixp->tc_fix_data.info->slaves;