projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
655f3ef
)
Fix thinko in last change
author
Jeff Law
<law@redhat.com>
Tue, 5 Jul 1994 01:18:23 +0000
(
01:18
+0000)
committer
Jeff Law
<law@redhat.com>
Tue, 5 Jul 1994 01:18:23 +0000
(
01:18
+0000)
gas/config/tc-hppa.c
patch
|
blob
|
history
diff --git
a/gas/config/tc-hppa.c
b/gas/config/tc-hppa.c
index caaad7c4726634b0f8076ef5113f163a9fbfc51b..c6780adba968d2afca966f8cb9a0690f4896168f 100644
(file)
--- a/
gas/config/tc-hppa.c
+++ b/
gas/config/tc-hppa.c
@@
-1257,12
+1257,11
@@
cons_fix_new_hppa (frag, where, size, exp)
{
unsigned int rel_type;
- /* Get a base relocation type. We use NONE for complex as it should
- always be reducable to a constant in the cases we generate. */
+ /* Get a base relocation type. */
if (is_DP_relative (*exp))
rel_type = R_HPPA_GOTOFF;
else if (is_complex (*exp))
- rel_type = R_HPPA_
NONE
;
+ rel_type = R_HPPA_
COMPLEX
;
else
rel_type = R_HPPA;