diff options
author | Richard Henderson <rth@redhat.com> | 2002-11-21 18:56:06 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2002-11-21 18:56:06 +0000 |
commit | 33bf47a8fe376b83a48ae7873c5f2b0e7c971530 (patch) | |
tree | b545031faa1ac718db642aba01a64fa574313056 /gas/config/tc-alpha.c | |
parent | 8997bd5e3f2a3523c3e113e1a89916a7a42e0257 (diff) | |
download | gdb-33bf47a8fe376b83a48ae7873c5f2b0e7c971530.zip gdb-33bf47a8fe376b83a48ae7873c5f2b0e7c971530.tar.gz gdb-33bf47a8fe376b83a48ae7873c5f2b0e7c971530.tar.bz2 |
* config/tc-alpha.c (alpha_fix_adjustable): Remove redundant
S_IS_DEFINED test.
Diffstat (limited to 'gas/config/tc-alpha.c')
-rw-r--r-- | gas/config/tc-alpha.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |