* config/tc-alpha.c (alpha_fix_adjustable): Remove redundant
S_IS_DEFINED test.
This commit is contained in:
parent
8997bd5e3f
commit
33bf47a8fe
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
2002-11-21 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* config/tc-mcore.c (mcore_pool_count): New function.
|
* config/tc-mcore.c (mcore_pool_count): New function.
|
||||||
|
|
|
@ -1523,7 +1523,7 @@ alpha_fix_adjustable (f)
|
||||||
const char *name;
|
const char *name;
|
||||||
int offset = 0;
|
int offset = 0;
|
||||||
|
|
||||||
if (! S_IS_DEFINED (sym) || S_FORCE_RELOC (sym))
|
if (S_FORCE_RELOC (sym))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
switch (S_GET_OTHER (sym) & STO_ALPHA_STD_GPLOAD)
|
switch (S_GET_OTHER (sym) & STO_ALPHA_STD_GPLOAD)
|
||||||
|
|
Loading…
Reference in a new issue