aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/config/tc-alpha.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 1a1e5dd..306dc93 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2002-11-21 Richard Henderson <rth@redhat.com>
+
+ * config/tc-alpha.c (alpha_fix_adjustable): Remove redundant
+ S_IS_DEFINED test.
+
2002-11-21 Alan Modra <amodra@bigpond.net.au>
* config/tc-mcore.c (mcore_pool_count): New function.
diff --git a/gas/config/tc-alpha.c b/gas/config/tc-alpha.c
index 9fb53bf..c54594b 100644
--- a/gas/config/tc-alpha.c
+++ b/gas/config/tc-alpha.c
@@ -1523,7 +1523,7 @@ alpha_fix_adjustable (f)
const char *name;
int offset = 0;
- if (! S_IS_DEFINED (sym) || S_FORCE_RELOC (sym))
+ if (S_FORCE_RELOC (sym))
return 0;
switch (S_GET_OTHER (sym) & STO_ALPHA_STD_GPLOAD)